/* =========================
   KLUBLEBEN LIGHTBOX (ISOLIERT)
========================= */

.klb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.klb-lightbox.active {
    display: flex;
}

.klb-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.klb-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.klb-footer {
    width: 100%;
}

#klubleben-lightbox-img {
    display: block;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    user-select: none;
}

.klb-lightbox button {
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.klb-prev,
.klb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    z-index: 2;
}

.klb-prev {
    left: 20px;
}

.klb-next {
    right: 20px;
}

.klb-header,
.klb-footer {
    color: white;
    margin: 10px;
    text-align: center;
}

.klb-month {
    font-size: 20px;
    margin: 0 10px;
}