.lcis-rp-status {
	display: none;
	margin-top: 8px;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 13px;
	line-height: 1.4;
}

.lcis-rp-status--loading {
	background: #eef4ff;
	color: #1a4a8a;
	border: 1px solid #cddefc;
}

.lcis-rp-status--loading::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 8px;
	border: 2px solid #1a4a8a;
	border-top-color: transparent;
	border-radius: 50%;
	vertical-align: middle;
	animation: lcis-rp-spin 0.8s linear infinite;
}

.lcis-rp-status--error {
	background: #fdecec;
	color: #8a1a1a;
	border: 1px solid #f3c7c7;
}

@keyframes lcis-rp-spin {
	to {
		transform: rotate( 360deg );
	}
}

.lcis-rp-overlay {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.5 );
	z-index: 100000;
}

.lcis-rp-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	background: #fff;
	border-radius: 6px;
	padding: 24px;
	max-width: 460px;
	width: calc( 100% - 40px );
	z-index: 100001;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.25 );
	font-size: 14px;
}

.lcis-rp-modal h3 {
	margin-top: 0;
	font-size: 17px;
}

.lcis-rp-modal p {
	line-height: 1.5;
	color: #333;
}

.lcis-rp-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.lcis-rp-btn {
	padding: 8px 14px;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 13px;
}

.lcis-rp-btn-primary {
	background: #2271b1;
	color: #fff;
}

.lcis-rp-btn-secondary {
	background: #f0f0f1;
	color: #1d2327;
	border-color: #ccc;
}

.lcis-rp-btn-cancel {
	background: transparent;
	color: #666;
}
