.devflow-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.92);
    padding: 2rem;
}

.devflow-lightbox.is-open {
    display: flex;
}

.devflow-lightbox__image {
    max-width: 92vw;
    max-height: 86vh;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.devflow-lightbox__button {
    position: absolute;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    font-size: 28px;
    cursor: pointer;
}

.devflow-lightbox__button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.devflow-lightbox__close {
    top: 24px;
    right: 24px;
}

.devflow-lightbox__prev {
    left: 24px;
}

.devflow-lightbox__next {
    right: 24px;
}

.devflow-lightbox__caption {
    position: absolute;
    bottom: 24px;
    color: #fff;
    font-size: 14px;
    opacity: 0.85;
    text-align: center;
    max-width: 80vw;
}
