#popup-pack-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Evita que se cierre accidentalmente */
#popup-pack-overlay:active {
    pointer-events: none;
}

#popup-pack {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 600px; /* Cambiado de 400px a 600px */
    position: relative;
    pointer-events: auto;
}


#popup-warning {
    font-size: 20px;
    font-weight: bold;
    color: red;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
	line-height: 1.2em;
}



#popup-title {
    font-size: 20px; /* Tamaño aumentado */
    text-transform: uppercase; /* Texto en mayúsculas */
    font-weight: bold;
    margin-bottom: 10px;
}

#popup-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

#popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.popup-button {
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    width: 45%;
}

.green {
    background: green;
    color: white;
}

.red {
    background: red;
    color: white;
}
