
body { background-color: #f0f9ff; } /* Light Sky Blue Background */

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px 0 rgba(14, 165, 233, 0.05);
}

/* Modern Custom Sliders */
input[type=range] {
    height: 6px;
    border-radius: 8px;
    background: rgba(14, 165, 233, 0.15);
    outline: none;
    -webkit-appearance: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }

#inp-priceHike::-webkit-slider-thumb { background: linear-gradient(135deg, #f87171, #dc2626); }
#inp-subsidy::-webkit-slider-thumb { background: linear-gradient(135deg, #34d399, #059669); }
#inp-tariff::-webkit-slider-thumb { background: linear-gradient(135deg, #facc15, #ca8a04); }
#inp-evAdoptionRange::-webkit-slider-thumb { background: linear-gradient(135deg, #38bdf8, #0284c7); }

.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }
