/* Sfondo oscurato */
.modal-base {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

/* Contenitore Pop-up */
.modal-wrap {
    background-color: #fff; /* Se la tua pagina ha un fondo scuro, usa 'inherit' */
    position: relative;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    font-family: inherit;
    color: inherit;
    
    /* DESKTOP */
    width: fit-content;
    min-width: 350px;
    max-width: 85%;
    margin: 5% auto;
}

/* MOBILE: Quasi full screen in larghezza, altezza contenuta */
@media (max-width: 767px) {
    .modal-wrap {
        width: 94%;
        max-width: 94%;
        max-height: 80vh;
        overflow-y: auto;
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 20px;
    }
}

/* Pulsante X */
.modal-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.modal-close:hover { color: #000; }

/* Loader per Ajax */
.modal-loader {
    display: none;
    text-align: center;
    padding: 20px;
    font-style: italic;
}