.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.custom-lightbox .lightbox-image {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    z-index: 10000;
    cursor: pointer;
}
.custom-lightbox .close-lightbox {
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10001;
}
body.lightbox-active {
    overflow: hidden;
}
