/* ===== Overlay (fond sombre) ===== */
.email-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out forwards;
}

/* ===== Fenêtre modale ===== */
.email-modal {
    background: #fff;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

/* Animation d’apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
