/* Estilos del overlay del modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Estilos del contenido del modal */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Estilos del logo en el modal */
.modal-logo {
    max-width: 186px;
    margin-bottom: 56px;
}

/* Estilos del botón de aceptar */
.modal-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #ff0000;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* Hover del botón de aceptar */
.modal-button:hover {
    background-color: #ff0000;
}

/* Estilos del botón de cerrar (X) */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Hover del botón de cerrar */
.close-btn:hover {
    color: #db0303;
}