/* Global styles */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2 {
    font-family: 'Inter', sans-serif;
}

/* Add smooth fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Custom button styles */

button {
    cursor: pointer;
}

button:hover {
    background-color: #2563eb; /* Darker blue on hover */
}
.spinner-border {
    border-top-color: transparent;
}


