/* Small overrides to ensure utility color classes applied to anchor tags
	 (loaded after other styles so it has the final say)
*/

/* Ensure anchors that use Tailwind-like utility classes keep their color
	 (fixes cases where generic anchor rules or parent colors override the utility)
*/
a.text-blue-600,
a.text-blue-600:link,
a.text-blue-600:visited {
	color: #002776 !important;
}

a.text-red-600,
a.text-red-600:link,
a.text-red-600:visited {
	color: #F94735 !important;
}

a.text-black,
a.text-black:link,
a.text-black:visited {
	color: #000 !important;
}

