/* website/static/website/css/lightbox.css */

.img-lightbox {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.img-lightbox.show {
    display: flex;
}

.img-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.img-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 48px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
}
