/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Range Slider Styles */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
}

/* Webkit (Chrome, Safari) */
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.range-slider:nth-of-type(1)::-webkit-slider-thumb {
  background: #9333ea; /* Purple for start time */
}

.range-slider:nth-of-type(2)::-webkit-slider-thumb {
  background: #ec4899; /* Pink for end time */
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.range-slider::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

/* Firefox */
.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.range-slider:nth-of-type(1)::-moz-range-thumb {
  background: #9333ea; /* Purple for start time */
}

.range-slider:nth-of-type(2)::-moz-range-thumb {
  background: #ec4899; /* Pink for end time */
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.range-slider::-moz-range-thumb:active {
  transform: scale(1.1);
}

/* Track styles */
.range-slider::-webkit-slider-runnable-track {
  height: 0;
  background: transparent;
}

.range-slider::-moz-range-track {
  height: 0;
  background: transparent;
}
