/* Modal Overlay */
.as-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none; /* cachée par défaut */
}

/* Modal Content */
.as-modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 960px;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

/* Iframe */
.as-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Bouton de fermeture */
.as-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10000;
}

/* Option : transition douce pour le fond */
.as-modal-overlay.show {
    display: flex;
}
