.gallery {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 100px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 80px;
    right: 65px;
    color: white;
    font-size: 4rem;
    cursor: pointer;
}

.arrow {
    font-size: 4rem; /* Größe der Pfeile */
    cursor: pointer; /* Zeigt an, dass die Pfeile klickbar sind */
    position: absolute; /* Damit sie über dem Bild angeordnet werden */
    top: 50%; /* Zentrieren vertikal */
    transform: translateY(-50%); /* Vertikale Zentrierung */
    color: white; /* Farbe */
}

#prevArrow {
    left: 65px; /* Position des linken Pfeils */
}

#nextArrow {
    right: 65px; /* Position des rechten Pfeils */
}
