/* Mobile Navigation Fix */
.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

.mobile-nav a.active {
    background: #3b82f6;
    color: white;
}

.mobile-nav a i {
    width: 16px;
    text-align: center;
}

/* Dark mode support */
[data-theme="dark"] .mobile-nav {
    background: #1e293b;
    border-top-color: #334155;
}

[data-theme="dark"] .mobile-nav a {
    color: #e2e8f0;
}

[data-theme="dark"] .mobile-nav a:hover {
    background: #334155;
    color: #60a5fa;
}

[data-theme="dark"] .mobile-nav a.active {
    background: #3b82f6;
    color: white;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}