#image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#popup-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}

#close-img-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: white;
    cursor: pointer;
}
