/* Sistema de Sugestões de Email - Estilos Compartilhados */
/* Adaptável aos temas claro e escuro */

.email-suggestions {
    position: absolute;
    z-index: 1000;
    background: var(--cor-fundo-card);
    border: 1px solid var(--cor-borda);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 2px;
    display: none;
    width: 100%;
    max-width: 300px;
}

.email-suggestion {
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cor-texto-primario);
    font-size: 0.875rem;
}

.email-suggestion:first-child {
    border-radius: 6px 6px 0 0;
}

.email-suggestion:last-child {
    border-radius: 0 0 6px 6px;
}

.email-suggestion:hover {
    background-color: rgba(153, 86, 246, 0.1);
}

.email-suggestion i {
    color: #9956f6;
    font-size: 1rem;
}

.email-suggestion span {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
}

/* Tema Escuro */
[data-theme="dark"] .email-suggestions {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .email-suggestion:hover {
    background-color: rgba(153, 86, 246, 0.15);
}

/* Animação suave */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-suggestions[style*="display: block"] {
    animation: fadeInDown 0.2s ease-out;
}
