#custom-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

#custom-lightbox.active {
    display: flex;
}

#custom-lightbox .lb-content {
    text-align: center;
    max-width: 90%;
}

#custom-lightbox img {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0px;
    cursor: pointer;
}
/* CAPTION CONTAINER */
.lb-caption {
    width: 100%;
    max-width: 700px;
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* TITLE */
.lb-title {
    margin: 0;
    color: #c5c5c5;
    font-size: 20px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ACTIONS */
.lb-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* BUTTON */
.lb-more-info {
    padding: 6px 16px;
    background: #fff !important;
    color: #000 !important;
    font-weight: 600;
    border: 0 !important;
    white-space: nowrap;
    cursor: pointer;
}




.lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.gallery-lightbox-item {
    cursor: pointer;
}

button.lb-more-info {
    border: 0px;
    color: #cfcfcf;
    padding: 0px 0px;
}
