/* styles/PriceRangeSlider.module.css */

.sliderContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  color: white;
}

.slider {
  position: relative;
  width: 100%;
}

.range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #0070f3;
  outline: none;
  opacity: 1;
  transition: opacity 0.2s;
  position: absolute;
  pointer-events: none;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #0070f3;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: auto; 
}

.range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #0070f3;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: auto; 
}

.values {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
}

.filledRange {
  position: absolute;
  height: 6px;
  background: #0070f3;
  top: 0;
  z-index: -1;
}
