/* css/popup_leccion.css */

.popup_leccion {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
    left: 0;
    bottom: 0; /* Fijo en la parte inferior */
    width: 100%;
    background-color: rgba(0,0,0,0.8); /* Fondo semitransparente */
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.popup_leccion-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.popup_leccion-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.popup_leccion-close:hover,
.popup_leccion-close:focus {
    color: #ccc;
}

.popup_leccion-ad {
    text-align: center;
    /* Puedes agregar más estilos según sea necesario */
}
