#bbp-drop-area {
	border: 2px dashed #ccc;
	padding: 20px;
	text-align: center;
	margin-bottom: 10px;
	background: #f9f9f9;
	cursor: pointer;
}
#bbp-drop-area.dragover { background: #eef; }
#bbp_image_preview { display:flex; flex-wrap:wrap; margin-top:10px; }
.bbp-preview { position:relative; margin:5px; width:100px; height:100px; }
.bbp-preview img { width:100%; height:100%; object-fit:cover; }
.bbp-preview .bbp-remove {
	position:absolute; top:0; right:0;
	background:red; color:white; cursor:pointer;
	padding:2px 5px; font-size:12px;
}
.bbp-preview .bbp-progress {
	position:absolute; bottom:0; left:0; width:100%; height:5px; background:#ddd;
}
.bbp-preview .bbp-bar { width:0; height:100%; background:green; }
.bbp-preview-placeholder { border:2px dashed #aaa; width:100px; height:100px; margin:5px; }





.bbp-image-gallery {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.bbp-image-gallery img {
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	transition: transform 0.2s;
}
.bbp-image-gallery img:hover {
	transform: scale(1.05);
}
