/* Minimal extras — main UI uses Tailwind CDN */

input[type="range"].dohub-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
}

input[type="range"].dohub-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563eb;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.45);
  margin-top: -6px;
}

input[type="range"].dohub-range:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

input[type="range"].dohub-range:disabled::-webkit-slider-thumb {
  background: #94a3b8;
}
