/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    z-index: 1001;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mobile-nav .logo {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 800;
}

#menuToggle {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
}

/* Footer Section */
.footer-main {
    margin-left: 95px;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: white;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
}

.section-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    background: #f8fafc;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem;
    color: var(--text-muted);
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.2;
}

@media (max-width: 1024px) {
    .mobile-nav {
        display: flex !important;
    }

    .main-content {
        margin-top: 60px;
    }

    .footer-main {
        margin-left: 0 !important;
    }
}