/* Severity pill: <span class="severity-pill" data-sev="7.5"></span> */

.severity-pill {
	display: inline-block;
	padding: 0.1rem 0.6rem;
	border-radius: 999px;
	border: 1px solid currentColor;
	font-weight: 600;
	font-size: 0.85em;
	line-height: 1.4;
	white-space: nowrap;
	vertical-align: middle;
	background-color: color-mix(in srgb, currentColor 12%, transparent);
}

/* Category colors: fixed hues that read well in light and dark themes */
.severity-pill[data-sev-cat="sev-critical"] {
	color: var(--red-fg, #f66151);
}

.severity-pill[data-sev-cat="sev-high"] {
	color: #e66100;
}

.severity-pill[data-sev-cat="sev-medium"] {
	color: var(--yellow-fg, #f8e45c);
}

.severity-pill[data-sev-cat="sev-low"] {
	color: var(--green-fg, #8ff0a4);
}

.severity-pill[data-sev-cat="sev-none"] {
	color: var(--fg-muted-4);
}
