#buffered-image-root {
    margin-top: 10px;
}

.bvi-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bvi-item {
    position: relative;
    width: 120px;
    height: 90px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fafafa;
    cursor: move;
}

.bvi-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bvi-remove {
    position: absolute;
    top: 2px;
    right: 4px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0 5px;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    border-radius: 2px;
}
