#imagePreview {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    cursor: pointer;
}

#imagePreview img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}


@media (max-width: 768px) {
    #imagePreview img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

}