/* ============================================
   AU Journal - Authentication & User Menu Styles
   ============================================ */

/* User Menu Styles */
.au-user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.au-user-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.au-user-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.au-nav-link-small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
}

.au-nav-link-small:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Login Required Message */
.login-required-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-required-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-required-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.login-required-box p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 24px;
}

.login-required-box .btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.login-required-box .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.login-required-box .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.login-required-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.login-required-box .btn-secondary {
    background: #e2e8f0;
    color: #2d3748;
}

.login-required-box .btn-secondary:hover {
    background: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
    .au-user-menu {
        padding: 4px 8px;
        gap: 8px;
    }
    
    .au-user-name {
        font-size: 13px;
    }
    
    .au-nav-link-small {
        font-size: 12px;
        padding: 4px 8px;
    }
}
