/* Estilo para el modal */
.modal {
    display: none; /* Inicialmente, el modal está oculto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--base);
    padding: 40px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease; /* Animación suave */
}

/* Estilo para el fondo opaco cuando se muestra el modal */
.overlay {
    display: none; /* Inicialmente, la capa está oculta */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}