/* ===== Estilo del POP-UP ===== */
.popup {
    display: none; /* Oculto inicialmente */
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}
.popup-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
    transform: translateY(-100%); /* Inicia fuera de la pantalla */
    animation: slideDown 0.5s ease-out forwards; /* Animación de caída */
}
@keyframes slideDown {
    to {
        transform: translateY(0); /* Termina en su posición original */
    }
}
.popup-content h2 {
    color: var(--first-color);
    margin-bottom: 15px;
}
.popup-content p {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
}
/* Barra de progreso */
.progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
    margin-top: 20px;
}
.progress {
    background-color: var(--first-color);
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: width 1s linear; /* Transición suave */
}
/* ===== Fin Estilo del POP-UP ===== */

.error-list {
    text-align: left;
    margin: 15px auto;
    max-width: 80%;
}
.error-list li {
    margin-bottom: 8px;
    color: #d9534f;
}