.izi-lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
    padding: 20px;
}

.izi-lightbox-overlay.active {
    display: flex;
}

.izi-lightbox-overlay img {
    max-width: 96vw;
    max-height: 96vh;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .6);
    border-radius: 4px;
    display: block;
}

.izi-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.izi-lightbox-caption {
    color: #ddd;
    margin-top: 12px;
    text-align: center;
    max-width: 90%;
    font-size: 14px;
}