body {
    font-family: 'Inter', sans-serif;
    background-color: #F7F9F7;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styles */
.sidebar {
    background: linear-gradient(135deg, theme('colors.deep-teal') 0%, theme('colors.sage') 100%);
}

.nav-item {
    color: theme('colors.soft-cream');
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: theme('colors.soft-cream/20');
}

.nav-item.active {
    background: theme('colors.soft-cream');
    color: theme('colors.deep-teal');
}

.nav-item-mobile {
    color: theme('colors.soft-cream');
    transition: all 0.3s ease;
}

.nav-item-mobile:hover {
    background: theme('colors.soft-cream/20');
}

.nav-item-mobile.active {
    background: theme('colors.soft-cream');
    color: theme('colors.deep-teal');
}

/* Mobile Sidebar Animation */
.mobile-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

/* Module Section Styles */
.module-section {
    border: 1px solid theme('colors.sage/20');
    box-shadow: 0 2px 8px theme('colors.sage/10');
}

.stat-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quick-action {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: #8A9B6E;
    color: white;
    transform: scale(1.05);
}

.mobile-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.module-section {
    border-left: 4px solid #8A9B6E;
}

.admin-module {
    border-left: 4px solid #1A535C;
}