/* Mriežka náhľadov */
.gallery-thumbnail {
    cursor: pointer;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 3px 3px 10px 1px rgb(100 100 100);
}

.gallery-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover img {
    transform: scale(1.03);
}

/* Lightbox obrázok */
.lightbox-img {
    max-width: 100%;
    max-height: 90vh; /* Zabezpečí, že fotka nepresiahne výšku monitora */
    object-fit: contain;
    border-radius: 0px;
}

/* Zatemnenie pozadia modalu (ak by default Bootstrapu nebol dosť čierny) */
.modal-fullscreen .modal-content.bg-dark {
    background-color: rgba(10, 10, 10, 0.95) !important;
}