/* Stil pentru lightbox */
#lightbox-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    overflow: auto; /* Adăugați această linie pentru a permite defilarea conținutului */
}

#lightbox-image {
    max-width: 90%;
    max-height: 95%;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

/* Clasă pentru a ascunde lightbox-ul inițial */
.hidden {
    display: none;
}

/* Adăugați stiluri pentru butoanele de navigare */
#lightbox-next, #lightbox-previous {
    font-size: 24px;
    color: white;
    position: absolute;
    top: 50%;
    z-index: 2;
    text-decoration: none;
	cursor: pointer;
}

#lightbox-next {
    right: 10px;
}

#lightbox-previous {
    left: 10px;
}
#lightbox-title {
    color: white;
    text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: bolder;
}