.sfrtr-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 500;
}
.sfrtr-status-uploaded {
	background: #d4edda;
	color: #155724;
}
.sfrtr-status-available {
	background: #d1ecf1;
	color: #0c5460;
}
.sfrtr-status-lost {
	background: #f8d7da;
	color: #721c24;
}
.sfrtr-status-checking {
	background: #fff3cd;
	color: #856404;
}
.sfrtr-status-unknown {
	background: #e2e3e5;
	color: #383d41;
}
.sfrtr-status-badge .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}
.sfrtr-status-checking .dashicons {
	animation: spin 1s linear infinite;
}
@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}






