/* ==========================================================================
   AUTH.CSS — Auth overlay and modal card styles
   (nav.css handles the overlay positioning; this file is intentionally
   minimal — extend here for any auth-specific theming beyond nav.css)
   ========================================================================== */

/* User profile badge shown in navbar after login */
.user-profile-nav-container {
    display: none; /* shown by JS once authenticated */
    align-items: center;
    gap: 15px;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-profile-badge img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile-badge span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.dashboard-nav-btn {
    background: #6d28d9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.dashboard-nav-btn:hover {
    background: #5b21b6;
}
