/* Overlay sfocato */
#emailoriginblockajax-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 99998;
    display: none;
}

/* Popup box */
#emailoriginblockajax-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.25);
    z-index: 99999;
    display: none;
    text-align: center;
    animation: popupfade .25s ease-out;
}

/* Animazione */
@keyframes popupfade {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* Titolo */
#emailoriginblockajax-popup h2 {
    margin-top: 0;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #cc0000 !important; /* Rosso elegante */
    margin-bottom: 12px;
}
/* Testo */
#emailoriginblockajax-popup p {
    font-size: 17px;
    line-height: 1.55;
    margin: 12px 0 20px 0;
}

/* Pulsante */
#emailoriginblockajax-popup a.button-med {
    display: inline-block;
    background: #1a73e8;
    color: #fff !important;
    padding: 10px 18px;
    font-size: 17px;
    padding: 12px 22px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none !important;
    margin-bottom: 10px;
}

/* Pulsante chiusura */
#emailoriginblockajax-close {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
    font-weight: 400;
    color: #888;
}
