/* Hide the default <img> icon WordPress injects when an icon URL is passed */
#adminmenu li#toplevel_page_sajjetti-audit .wp-menu-image img {
	display: none;
}

/* Repaint the menu icon using an SVG mask so its color inherits from the link */
#adminmenu li#toplevel_page_sajjetti-audit .wp-menu-image::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	margin: 2px 8px 8px 8px; /* centers icon in 36px row */
	background-color: currentColor;

	/* Path to assets: CSS in assets/css, SVG in assets/dash */
	-webkit-mask: url('../dash/sajjetti-dashicon.svg') no-repeat center / contain;
			mask: url('../dash/sajjetti-dashicon.svg') no-repeat center / contain;
}

/* Neutralize any dashicon glyph WordPress might inject as a fallback */
#adminmenu li#toplevel_page_sajjetti-audit .wp-menu-image.dashicons-before::before {
	content: "";
}
