/* ============================================================
   LAYOUT: NAVIGATION
   Global navigation styles and utilities
   ============================================================ */

/* Remove underlines from Bootstrap navigation elements */
.nav-link,
.dropdown-item {
    text-decoration: none !important;
}

/* Ensure hover states for regular nav links also don't show underlines */
.nav-link:hover,
.nav-link:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    text-decoration: none !important;
}

/* Navbar brand (site title) should always be white and never underlined */
.navbar-brand {
    color: var(--ds-text-inverse) !important; /* typically white */
    text-decoration: none !important;
}
.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active {
    color: var(--ds-text-inverse) !important;
    text-decoration: none !important;
}
