@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a202c;
    color: #e2e8f0;
}

section {
    background-color: #2d3748;
    color: #e2e8f0;
}

label {
    color: #e2e8f0 !important;
}

input, select {
    background-color: #4a5568 !important;
    color: #e2e8f0 !important;
    border-color: #4a5568 !important;
}

input::placeholder {
    color: #a0aec0 !important;
}
/* Animation for the calculate button */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 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;
}