/* Social Authentication Styles */
.auth-social-label {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-social-buttons {
    gap: 28px;
}

.auth-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.auth-social-btn:hover {
    opacity: 0.8;
    color: inherit;
    text-decoration: none;
}

.auth-social-text {
    font-size: 12px;
}

/* Google One Tap positioning */
.g_id_signin {
    margin: 10px 0;
}

/* User avatar and logout styles */
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
}

.user-dropdown-menu.show {
    display: block;
}

.user-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.user-dropdown-item:hover {
    background-color: #f9fafb;
    color: #374151;
    text-decoration: none;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-info {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.user-name {
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.user-email {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0 0;
}
