ui/npchealthbar.cs.scss
NpcHealthBar {
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	pointer-events: none;

	.npc-health-track {
		width: 156px;
		height: 12px;
		padding: 2px;
		background-color: rgba( 0, 0, 0, 0.72 );
		border-radius: 3px;
		box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.9 );

		.npc-health-fill {
			height: 100%;
			background-color: white;
			border-radius: 1px;
			transition: width 0.08s ease-out;
		}
	}
}