/* Elevate Incentives — role-aware nav ([ei_nav] / [ei_links]).
   Self-contained (no variables) so it renders consistently on every page,
   including normal pages where the main portal stylesheet isn't loaded. */
ul.ei-nav {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	align-items: center;
}
ul.ei-nav > li { margin: 0; padding: 0; }
ul.ei-nav > li::before { content: none !important; } /* kill theme bullet content */
ul.ei-nav > li > a {
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: #1d4ed8;
	background: #fff;
	border: 1px solid #e5e7eb;
	padding: 8px 14px;
	border-radius: 8px;
	white-space: nowrap;
}
ul.ei-nav > li > a:hover,
ul.ei-nav > li > a:focus { border-color: #2563eb; background: #f8fafc; color: #1d4ed8; }
ul.ei-nav > li.current-menu-item > a { border-color: #2563eb; color: #2563eb; }

/* Inline links variant ([ei_links]) */
nav.ei-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
nav.ei-links .ei-link {
	text-decoration: none; font-size: 14px; font-weight: 600; color: #1d4ed8;
	border: 1px solid #e5e7eb; padding: 8px 14px; border-radius: 8px; white-space: nowrap;
}
nav.ei-links .ei-link:hover { border-color: #2563eb; background: #f8fafc; }
