.gallery .lightbox-image {
    position: relative;
    z-index: 10;
}

.gallery .mag-glass {    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery .mag-glass img {
    max-height: 120px;
    max-width: 120px;
}

.gallery .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    background: rgba(0,0,0,0.5);
    transition: all linear 0.35s;
}

.gallery .mask:hover {
    opacity: 1;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

#lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

#lightbox-image-container {
    height: 70%;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
}

#prev-button,
#next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

#prev-button {
    left: 10px;
}

#next-button {
    right: 10px;
}