@tailwind base; @tailwind components; @tailwind utilities; /* Range slider custom styling */ input[type="range"].range-slider { -webkit-appearance: none; appearance: none; accent-color: #39ff14; } input[type="range"].range-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: #39ff14; cursor: pointer; border: 2px solid #09090b; box-shadow: 0 0 6px rgba(57, 255, 20, 0.4); } input[type="range"].range-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #39ff14; cursor: pointer; border: 2px solid #09090b; box-shadow: 0 0 6px rgba(57, 255, 20, 0.4); } input[type="range"].range-slider::-webkit-slider-runnable-track { height: 8px; border-radius: 9999px; background: #3f3f46; } input[type="range"].range-slider::-moz-range-track { height: 8px; border-radius: 9999px; background: #3f3f46; }