/* Staff listing module (sl-) — certification chips in the All staff table.
   Tints mirror the detail-page cert badges (staff-detail.css .sd-cert-badge-*)
   so the same cert reads identically on the list and the profile. */
.sl-cert-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	max-width: 260px;
}

.sl-cert-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.sl-cert-chip i {
	font-size: 10px;
}

.sl-cert-chip--valid {
	background: #ecfdf3;
	color: #027a48;
}

.sl-cert-chip--expiring {
	background: #fffaeb;
	color: #b54708;
}

.sl-cert-chip--expired {
	background: #fef3f2;
	color: #b42318;
}

.sl-cert-chip--none {
	background: #f2f4f7;
	color: #475467;
}
