@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

body {
    font-family: 'Nunito', sans-serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: #0D47A1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1976D2;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Utility classes */
.text-primary {
    color: #0D47A1;
}

.bg-primary {
    background-color: #0D47A1;
}

.hover\:bg-primary:hover {
    background-color: #0b3d8f;
}

.bg-secondary {
    background-color: #1976D2;
}

.bg-accent {
    background-color: #2196F3;
}

.bg-light {
    background-color: #E3F2FD;
}

.text-gray {
    color: #546E7A;
}