/* minimal lightbox styles */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100
}

.lb-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px
}

.lb-close {
    position: fixed;
    top: 24px;
    right: 24px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 110
}