#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow: auto; /* Agrega una barra de desplazamiento cuando el contenido exceda el tamaño del popup */
}

#popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    margin-top:120px;
    margin-bottom:10px;
    text-align: center;
}

.image-wrapper {
    margin-bottom: 10px;
}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#close-button {
    display: inline;
    background-color: black;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding-left:10px;
    padding-right:10px;
    margin-bottom:10px;
    border-radius: 5px;
    font-weight: bold;
}


