#bp-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

#bp-lightbox.active {
    justify-content: center;
    align-items: center;
}

.bp-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(132, 132, 132, 0.85);
    backdrop-filter: blur(4px);
}

.bp-modal {
    position: relative;
    z-index: 2;
    width: min(900px, 95%);
    max-height: 90vh;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bp-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 32px;
    border: none;
    background: none;
    cursor: pointer;
}

.bp-title {
    margin: 10px 0 15px;
    text-align: center;
    font-size: 1.35rem;
font-weight: bold;
color:#595959;
}

.bp-img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

#bp-full-img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 8px;
}

.bp-actions {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.bp-btn {
    padding: 10px 20px;
    background: #737373;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.bp-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 55px;
    height: 75px;
    background:rgb(119, 119, 119);
    color: #fff;
    font-size: 35px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-views-btn {
    cursor: default;          
    pointer-events: none;     
    min-width: 150px;        
    text-align: center;
}

.bp-prev { left: 10px; }
.bp-next { right: 10px; }

@media (max-width: 768px) {
    .bp-nav {
        width: 45px;
        height: 60px;
        font-size: 28px;
    }
}
