@tailwind base; @tailwind components; @tailwind utilities; /* Custom slider styling */ input[type="range"].slider { -webkit-appearance: none; appearance: none; } input[type="range"].slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); cursor: pointer; border: 2px solid white; box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); } input[type="range"].slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); cursor: pointer; border: 2px solid white; box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); } input[type="range"].slider::-webkit-slider-runnable-track { background: linear-gradient(90deg, #3b82f6, #8b5cf6); height: 8px; border-radius: 4px; } input[type="range"].slider::-moz-range-track { background: linear-gradient(90deg, #3b82f6, #8b5cf6); height: 8px; border-radius: 4px; } /* Smooth transitions */ * { transition: background-color 0.2s ease, border-color 0.2s ease; }