/* Lightbox-Overlay */
.lightbox-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Lightbox-Bild */
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid white;
    border-radius: 8px;
}

/* Schließen-Button */
.lightbox-overlay .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Vorherige- und Nächste-Buttons */
.lightbox-overlay .prev,
.lightbox-overlay .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1001;
}

.lightbox-overlay .prev {
    left: 20px;
}

.lightbox-overlay .next {
    right: 20px;
}

.lightbox-overlay .prev:hover,
.lightbox-overlay .next:hover {
    background-color: rgba(255, 255, 255, 1);
}
