#imageModal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: zoom-out;
}

#imageModal.is-open {
    display: block;
}

#modalImg {
    width: 90vw;
    height: 98vh;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: default;
}

.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
    font-family: inherit;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
}
