#uvedna-poruka {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* JS će ovo promeniti u 'flex' */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease;
}

#zatvori-poruku {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 60px;
    cursor: pointer;
    line-height: 1;
}

.sadrzaj-poruke img {
    max-width: 80%;
    max-height: 70vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.sadrzaj-poruke a img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sadrzaj-poruke a img:hover {
    transform: scale(1.02); /* Blago povećanje slike na hover */
}