#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffff;
    padding: 18px 28px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 1, 0.5);
    z-index: 9999;
    font-weight: 400;
    font-size: 12px;
    max-width: 80%;
    min-width: 250px;
    text-align: center;
    animation: fadeZoom 0.4s ease-out;
    transition: all 0.2s ease-in-out;
}

#popup-text {
    font-size: 18px;
    color: #721c24; /* asegura el color del texto e ícono */
}

.icon-success::before,
.icon-error::before,
.icon-warning::before,
.icon-info::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2em;
    margin-right: 6px;
    color: inherit; /* 🔥 esto es la clave */
}

.icon-success::before { content: '✔️'; }
.icon-error::before   { content: '❌'; }
.icon-warning::before { content: '⚠️'; }
.icon-info::before    { content: 'ℹ️'; }

/* Animación suave */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
/* Botón de cierre */
