/* CheckBarriere Frontend Badge */

.cb-badge {
	position: fixed;
	bottom: 20px;
	z-index: 9999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cb-badge-right {
	right: 20px;
}

.cb-badge-left {
	left: 20px;
}

.cb-badge-link {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #1e293b;
	color: #fff;
	padding: 8px 14px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cb-badge-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
	color: #fff;
	text-decoration: none;
}

.cb-badge-icon {
	color: #22c55e;
	flex-shrink: 0;
}

.cb-badge-text {
	white-space: nowrap;
}

.cb-badge-score {
	background: #22c55e;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 2px;
}
