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

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

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

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

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

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

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

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

/* Button hover effects */
.btn-hover-grow {
    transition: transform 0.2s ease-in-out;
}

.btn-hover-grow:hover {
    transform: translateY(-2px);
}

/* Form inputs */
.input-focus {
    transition: box-shadow 0.2s ease-in-out;
}

.input-focus:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Dashboard cards */
.card-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Sidebar navigation */
.sidebar-link {
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.sidebar-link:hover {
    background-color: #f3f4f6;
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
}