/* Custom Range Slider Styling */
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #334155;
  border-radius: 4px;
  outline: none;
  transition: opacity 0.2s;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.custom-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  transition: transform 0.1s;
}

.custom-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Disabled state */
.custom-slider:disabled::-webkit-slider-thumb {
  background: #64748b;
  cursor: not-allowed;
  transform: none;
}

.custom-slider:disabled::-moz-range-thumb {
  background: #64748b;
  cursor: not-allowed;
  transform: none;
}
