/**
 * Modular Logout Button Styles
 * Can be included in any page header
 */

.auth-user-info-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.user-greeting i {
    font-size: 24px;
    color: #007aff;
}

.user-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.user-role {
    font-size: 13px;
    color: #666;
    background: rgba(0, 122, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff3b30 0%, #d62828 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
}

.logout-btn:active {
    transform: translateY(0);
}

.logout-btn i {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .auth-user-info-content {
        gap: 10px;
        padding: 8px 12px;
    }

    .user-role {
        display: none;
    }

    .user-name {
        font-size: 14px;
    }

    .logout-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}
