/* nav-auth.css — Shared auth navbar styles */
#navUser {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-greeting {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}
.nav-link {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.nav-link:hover { opacity: 1; }
.nav-logout {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.2s;
    margin-right: 10px;
}
.nav-logout:hover { background: rgba(255,255,255,0.3); }

/* Login / Sign up buttons rendered by nav-auth.js */
#navUser .btn {
    background: #fff;
    color: #0074f9;
    border: none;
    border-radius: 8px;
    padding: 4px 18px;
    margin-left: 8px;
    font-size: 24px;
    cursor: pointer;
    font-family: 'Kavoon', cursive;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
#navUser .btn.signup {
    background: none;
    color: #fff;
    border: 1.5px solid #fff;
    margin-right: 30px;
}

/* Hide navUser on mobile to keep it clean */
@media (max-width: 768px) {
    #navUser { display: none; }
}
