body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.modal-vast {
    display: none; /* Cambiar a flex cuando se muestre */
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    backdrop-filter: blur(10px); /* Aplica desenfoque al fondo */
    justify-content: center;
    align-items: center;
}

.modal-content-vast {
    position: relative;
    background-color: #549369;
    padding: 5px;
    border-radius: 5px;
    width: 80%;
    max-width: 40%; /* Ajuste para pantallas más grandes */
}

/* Estilos para pantallas móviles */
@media (max-width: 768px) {
    .modal-content-vast {
        width: 90%; /* Aumentar el ancho para móviles */
        max-width: 100%; /* Permitir que ocupe todo el ancho */
        padding: 5px; /* Ajustar el padding si es necesario */
    }
}

/* Estilos para pantallas más grandes */
@media (min-width: 769px) {
    .modal-content-vast {
        width: 70%; /* Ajuste para pantallas más grandes */
        max-width: 40%; /* Mantener el tamaño máximo */
        padding: 5px; /* Mantener el padding original */
    }
}

.skip-button {
    position: absolute;
    right: 2%;
    top: 6%;
    background-color: #5e5b5b87;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
    cursor: pointer;
}