.slider-container {
  width: 100%;
  display: flex;
  align-items: center;
}

.slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--grid-color);
  outline: none;
  border-radius: 3px;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--accent-color);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px var(--accent-color-transparent, rgba(74, 144, 226, 0.2));
  transform: scale(1.1);
}

.slider::-moz-range-thumb:hover {
  box-shadow: 0 0 0 5px var(--accent-color-transparent, rgba(74, 144, 226, 0.2));
  transform: scale(1.1);
}

/* Focus styles */
.slider:focus {
  outline: none;
}

.slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px var(--accent-color-transparent, rgba(74, 144, 226, 0.2));
}

.slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 5px var(--accent-color-transparent, rgba(74, 144, 226, 0.2));
}

.slider-label {
  color: var(--text-color);
  font-size: 14px;
  white-space: nowrap;
}

.slider-input {
  width: 150px;
  height: 6px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.slider-value {
  color: var(--text-color);
  font-size: 14px;
  min-width: 40px;
  text-align: right;
} 