.mj-current {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 10px;
}

.mj-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 20px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
}

.mj-badge.is-empty {
	background: #c7cdd0 !important;
}

.mj-count {
	color: #9aa4aa;
	font-size: 12px;
}

/* Barre de répartition des votes (profil de mérite) */
.mj-bar {
	display: flex;
	width: 100%;
	height: 8px;
	margin-bottom: 12px;
	border-radius: 5px;
	overflow: hidden;
	background: #edf0f1;
}

.mj-bar-segment {
	height: 100%;
	transition: width .2s ease;
}

/* Boutons de vote (une mention = un bouton) */
.mj-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.mj-button {
	flex: 1 1 auto;
	padding: 7px 6px;
	border: 1px solid #dfe5e7;
	border-radius: 8px;
	background: #f7f9f9;
	color: #39444a;
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
	cursor: pointer;
	transition: .15s ease;
}

.mj-button:hover:not(:disabled) {
	transform: translateY(-1px);
	color: #ffffff;
	border-color: transparent;
	background: var(--mj-color, #2e8b57);
}

.mj-button:disabled {
	opacity: .5;
	cursor: default;
}

.mj-button.is-voted {
	opacity: 1;
	color: #ffffff;
	border-color: transparent;
	background: var(--mj-color, #2e8b57);
}

.rating-message {
	margin-top: 8px;
	color: #2e8b57;
	font-size: 12px;
	font-weight: 600;
}
