/* Estilos para o menu dinâmico de autenticação */
.auth-dropdown-panel {
    min-width: 220px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.auth-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    width: 100%;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent;
    cursor: pointer;
    color: #71717a !important; /* text-muted-foreground */
}

.auth-dropdown-item svg {
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.7;
}

.auth-dropdown-item span {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #18181b !important; /* text-foreground */
}

.auth-dropdown-item:hover {
    background-color: #f4f4f5 !important; /* bg-muted */
    color: #145c85 !important; /* primary color */
}

.auth-dropdown-item:hover svg {
    opacity: 1;
}

.auth-dropdown-item:hover span {
    color: #145c85 !important;
}

/* Ajuste para o botão de Gatilho */
.auth-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    outline: none;
}
