/*
 * material-dashboard.css (creativetimofficial/material-dashboard-free)
 * does not ship the old Bootstrap 4 style .badge-{color} classes -
 * confirmed by grepping the vendored file for "badge-primary" and every
 * other color, zero matches. It only carries the Bootstrap 5.3
 * .text-bg-{color} replacement. This app has dozens of existing <span
 * class="badge badge-success">/"badge-danger"/etc. across views that
 * were never touched by this reskin (demandItemDone.blade.php,
 * infringementItemDone.blade.php, the subscription badge in layouts/
 * admin.blade.php, ...) - without this file they would silently render
 * as a plain unstyled .badge (just padding/uppercase, no color) the
 * moment material-dashboard.css replaced soft-ui-dashboard.css, which DID
 * carry these classes.
 *
 * Values reused directly from this same file's own --bs-*-rgb tokens
 * (see :root, e.g. --bs-success-rgb: 76, 175, 80) rather than new hex
 * codes, so these track the real Material Dashboard palette exactly.
 * .badge-primary is intentionally NOT included here: the plan-colored
 * client panel overrides it itself (see the inline <style> in layouts/
 * admin.blade.php) with a softer tint tailored to that per-plan color,
 * not a plain alias of --bs-primary-rgb.
 */
.badge-secondary {
	color: #fff;
	background-color: rgba(var(--bs-secondary-rgb), 1);
}

.badge-success {
	color: #0a0a0a;
	background-color: rgba(var(--bs-success-rgb), 1);
}

.badge-info {
	color: #fff;
	background-color: rgba(var(--bs-info-rgb), 1);
}

.badge-warning {
	color: #0a0a0a;
	background-color: rgba(var(--bs-warning-rgb), 1);
}

.badge-danger {
	color: #fff;
	background-color: rgba(var(--bs-danger-rgb), 1);
}

.badge-light {
	color: #0a0a0a;
	background-color: rgba(var(--bs-light-rgb), 1);
}

.badge-dark {
	color: #fff;
	background-color: rgba(var(--bs-dark-rgb), 1);
}
