﻿.img-container {
    text-align: center;
}

    .img-container img {
        margin-top: 10px;
    }

    .img-container .img-caption {
        margin-top: 10px;
        font-weight: 600
    }


.zoomable-image {
    cursor: zoom-in;
}

/* Pozadina preko celog ekrana */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

/* Uvećana slika */
.image-lightbox-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

/* X za zatvaranje */
.image-lightbox-close {
    position: absolute;
    top: 15px;
    right: 30px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
}

    .image-lightbox-close:hover {
        color: #ccc;
    }
