/* Navigation styles with higher specificity to override Tailwind */
a.nav-link {
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
    border-bottom: 3px solid transparent !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    position: relative !important;
}

a.nav-link:hover {
    color: #374151 !important;
    border-bottom-color: #E5E7EB !important;
}

a.nav-link.active {
    color: #6366F1 !important; /* Indigo/purple color */
    border-bottom-color: #6366F1 !important;
}

/* Ensure the active underline is visible */
a.nav-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -3px !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background-color: #6366F1 !important;
}