#img-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#img-popup-content {
    position: relative;
    max-width: 70%;
    max-height: 70%;
    overflow:auto;
    border-radius: 20px;
    padding:25px;
}

#img-popup-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
}

#img-popup-close {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
