
#bpm-gallery-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 10px;
}
#bpm-gallery-list li {
    position: relative;
}
#bpm-gallery-list img {
    width: 100px;
    height: auto;
    border: 1px solid #ccc;
}
#bpm-gallery-list .remove {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #f00;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
}
.bpg-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.bpg-thumb {
    width: 180px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.bpg-thumb:hover {
    transform: scale(1.05);
}
