
/* Lightbox styles */
#lightbox-custom-draggable {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    overflow: hidden;
}
#lightbox-content {
    position: relative;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    cursor: move;
    transition: transform 0.3s ease;
    z-index: 1;
    object-fit: contain;
}
.zoom-buttons {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}
.zoom-buttons button {
    margin: 5px;
    padding: 0;
    background-color: #000;
    border: 1px solid #ccc;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
/* .zoom-buttons button:hover {
    background-color: #eee;
} */
#lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #000;
    border: 1px solid #fff;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
}
#lightbox-custom-draggable  .prev-next-buttons{
    position: fixed;
    z-index: 1;
    top: 50%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 50px;
    left: 0;
    right: 0;
}

#btn-next-draggable .next-icon, 
#btn-prev-draggable .prev-icon{
    width: 18px !important;
    height: unset;

}
#btn-next-draggable, 
#btn-prev-draggable{
    background: none;
    outline: none;
    background-color: #000;
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}