/* Modern Navigation Styles */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.dark .nav-link {
    color: #9ca3af;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #0eafc7;
}

.dark .nav-link:hover {
    background-color: #374151;
    color: #0eafc7;
}

.nav-link-active {
    background-color: #0eafc7;
    color: white !important;
}

.dark .nav-link-active {
    background-color: #0eafc7;
    color: white !important;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.dark .mobile-nav-link {
    color: #9ca3af;
}

.mobile-nav-link:hover {
    background-color: #f3f4f6;
    color: #0eafc7;
}

.dark .mobile-nav-link:hover {
    background-color: #374151;
    color: #0eafc7;
}

.mobile-nav-link-active {
    background-color: #0eafc7;
    color: white !important;
}

.dark .mobile-nav-link-active {
    background-color: #0eafc7;
    color: white !important;
}

/* Legacy Pure.css compatibility */
html, button, input, select, textarea, .pure-g [class *= "pure-u"], .pure-g-r [class *= "pure-u"]{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}