/* Simulator range slider styling */
.simulator-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
}

.simulator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid #1e3a5f;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.simulator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

.simulator-slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
}

.simulator-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid #1e3a5f;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  cursor: pointer;
}

.simulator-slider::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}
