#my-lightbox {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); 
    backdrop-filter:blur(10px);
    z-index: 9999; 
    justify-content: center; 
    align-items: center;
    transition: opacity 0.3s ease;
}

#my-lightbox.active {
    display: flex; 
    opacity: 1;
    justify-content: space-between;
}


#lb-image {
    max-width: 90%;
    max-height: 80%;
    transition: opacity 0.3s ease;
    opacity: 1;
}

#my-lightbox div.my-arrows{
    padding: 15px;
    text-align: center;
    width: 50px;
    height: 90px;
    border: 1px solid #d3d3d34f;
    background: #e8e8e812;
    cursor: pointer;
    display:flex;
    justify-content:center;
    align-items:center;
}
#my-lightbox .my-arrows span{
    color:white;
    font-size: 25px;
}
#my-lightbox #lb-prev span{
    left: -10px; 
}

#my-lightbox #lb-next span{
    left: 10px; 
}

.my-gallery-active{
    display: flex;
    justify-content: flex-start;
}
.my-gallery-active img{
   cursor: pointer;
}