.dppb-spinner-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dppb-spinner-modal {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dppb-spinner-circle {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #0073aa;
	border-radius: 50%;
	animation: dppb-spin 1s linear infinite;
	margin: 0 auto 10px;
}

.dppb-spinner-message {
	color: #333;
	font-size: 14px;
}

@keyframes dppb-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


