body.tcwd-lightbox-open {
    overflow: hidden;
}

.tcwd-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tcwd-lightbox-visible {
    opacity: 1;
    pointer-events: auto;
}

.tcwd-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.tcwd-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}

.tcwd-lightbox-caption {
    color: white;
    margin-top: 12px;
    font-size: 0.9rem;
}

.tcwd-lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 22px;
    cursor: pointer;
}
body.tcwd-lightbox-open {
    overflow: hidden;
}

.tcwd-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tcwd-lightbox-overlay.tcwd-lightbox-visible {
    opacity: 1;
    pointer-events: auto;
}

.tcwd-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.tcwd-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}

.tcwd-lightbox-caption {
    color: #fff;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* Close button */
.tcwd-lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 22px;
    cursor: pointer;
}

/* Prev / Next buttons */
.tcwd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    width: 36px;
    height: 48px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    border-radius: 4px;
}

.tcwd-lightbox-prev {
    left: -50px;
}

.tcwd-lightbox-next {
    right: -50px;
}
