/* ========================================
   Navbar Styles
   ========================================
   Extracted from base.html for better performance and maintainability
*/

/* Consistent font styling to match backend */
.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    transition: color 0.2s, text-decoration 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    text-decoration: underline;
}

.navbar-brand {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.75rem;
    user-select: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    align-items: center;
    height: 100%;
}

.btn-outline-light {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

.dropdown-item {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
