/**
 * Estilos para o Modal com Iframe
 */

/* Estilo para o link parecer um botão */
.liu-open-modal-link {
    display: inline-block;
    background-color: #E53935;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.3s;
}
.liu-open-modal-link:hover {
    background-color: #C62828;
    color: white;
}

/* Estilos do Modal */
.liu-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); z-index: 99998; display: none;
    justify-content: center; align-items: center;
}
.liu-modal-overlay.active { display: flex; }
.liu-modal-content {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.liu-modal-close {
    position: absolute; top: 5px; right: 15px; font-size: 28px;
    font-weight: bold; color: #888; cursor: pointer; line-height: 1;
    z-index: 10; /* MUDANÇA: Adicionado z-index para garantir que fique por cima */
}
.liu-modal-close:hover { color: #000; }