/* Basic global styles placeholder; extend as needed */
html, body {
  margin: 0;
  padding: 0;
}

/* Improve range input thumb on WebKit for consistency */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #2563eb; /* blue-600 */
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #2563eb;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}




