/* Lightbox alapszabályok */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    justify-content: center;
    align-items: center;
    flex-direction: column; /* A kép és a szöveg egymás alatt legyen */
    text-align: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain; /* Nem torzítja a képet */
    /* margin eltávolítva! */
}

.lightbox-video {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain; /* A videó arányainak megtartása */
    display: none; /* Alapértelmezetten rejtve */
}


.lightbox-caption {
    color: white;
    font-size: 1.2em;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word; /* Hosszú szövegek tördelése */
    margin-top: 15px; /* Távolság a képtől */
}



.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
}
