/* Posicionar o dropdown em relação ao menu item */
.menu-item-5847, .menu-item-6177 {
    position: relative;
}

/* Esconder o dropdown por padrão */
#user-toolbar-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 9999;
    margin-top: 8px;
}

/* Mostrar dropdown quando hover */
#user-toolbar-dropdown.show {
    display: block;
}

/* Profile Section */
.user-profile-section {
    padding: 16px;
}

.user-profile-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.user-email {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.user-status {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 500;
}

.user-status.status-verified {
    background: #e7f5e9;
    color: #2e7d32;
}

.user-status.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.user-status.status-unverified {
    background: #ffebee;
    color: #c62828;
}

/* Divider */
.user-toolbar-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0 8px;
}

/* Menu Items */
.user-toolbar-menu {
    padding: 8px 0;
}

.toolbar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.toolbar-menu-item:hover {
    background: #f5f5f5;
}

.toolbar-menu-item.highlight {
    color: #1976d2;
    font-weight: 500;
}

.toolbar-menu-item svg {
    flex-shrink: 0;
}

/* Logout Button */
.user-toolbar-footer {
    padding: 8px;
}

.toolbar-logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    width: 100%;
    background: transparent;
    border: none;
    color: #d32f2f;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.toolbar-logout-btn:hover {
    background: #ffebee;
}