/* Custom styles that can't be achieved with Tailwind */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Custom animation for the calculator cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bg-white {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Delayed animations for coming soon cards */
.bg-white.opacity-75:nth-child(2) {
    animation-delay: 0.2s;
}

.bg-white.opacity-75:nth-child(3) {
    animation-delay: 0.4s;
}
/* Custom range slider styling */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
    margin-top: -6px;
}

input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
}

input[type="range"]::-ms-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
}

input[type="range"] {
    -webkit-appearance: none;
    height: 4px;
}

input[type="range"]:focus {
    outline: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3B82F6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563EB;
}