#custom-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    text-align: center;
}
#custom-lightbox:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#lightbox-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    max-height: 90%;
    margin: 0 auto;
}
#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}
#lightbox-caption {
    color: white;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}
#lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    color: white;
    background-color: #333;
    border: 2px solid white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
    font-family: Arial, sans-serif;
    padding: 0;
}
#lightbox-prev, #lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background-color: #333;
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
    font-family: Arial, sans-serif;
    padding: 0;
}
#lightbox-prev {
    left: -60px;
}
#lightbox-next {
    right: -60px;
}
@media (max-width: 768px) {
    #lightbox-close {
        top: 10px;
        right: 10px;
    }
    #lightbox-prev {
        left: 10px;
    }
    #lightbox-next {
        right: 10px;
    }
}
#page-local-marketplace-function_details .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}