/* meta-line should be one row that wraps nicely */
.meta-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

/* reactions widget inline with the meta items */
.meta-line .bb-reactions {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	margin: 0; /* override default 6px 0 2px */
	padding: 0;
	opacity: 0.9;
	visibility: visible;
	vertical-align: middle;
	flex: 0 0 auto;
}

/* keep the "pill" look */
.meta-line .bb-react-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;

	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(0, 0, 0, 0.18);
	border-radius: 999px;

	padding: 4px 8px; /* compact for meta row */
	cursor: pointer;
	line-height: 1;
	font-size: 13px;
}

/* ✅ liked / voted state (same as your existing rules) */
.meta-line .bb-react-btn[aria-pressed="true"] {
	border-color: rgba(255, 80, 120, 0.35);
	background: rgba(255, 80, 120, 0.12);
}

/* counter */
.meta-line .bb-react-cnt {
	display: inline-flex !important;
	align-items: center;

	min-width: 18px; /* keep from collapsing */
	font-size: 12px;
	opacity: 0.75;
}

/* busy state */
.meta-line .bb-react-busy {
	opacity: 0.55;
	pointer-events: none;
}
