/*
 * BayK9 Client Portal — site header nav auth links (Log In/Sign Up/
 * Dashboard/Log Out). Loaded site-wide (the header appears on every page,
 * not just portal pages) so this file is deliberately tiny.
 */

.bayk9-cp-nav-item {
	display: inline-flex !important;
	align-items: center;
	margin-left: 0.4em;
}

.bayk9-cp-navbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4em 1.1em;
	border-radius: 999px;
	font-size: 0.78em;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	text-decoration: none !important;
	transition: transform 150ms ease, opacity 150ms ease, filter 150ms ease;
}

.bayk9-cp-navbtn:hover {
	transform: translateY(-1px);
	text-decoration: none !important;
}

/*
 * A solid white "ghost" pill rather than a transparent/currentColor
 * outline — the header switches between a transparent state over a photo
 * (dark) and a solid sticky state on scroll (light), and a see-through
 * outline read as nearly invisible against the photo background. A solid
 * white chip with dark text stays readable against either.
 */
.bayk9-cp-navbtn-outline {
	background: #ffffff;
	color: #0b1220 !important;
	border: 1.5px solid #ffffff;
	box-shadow: 0 2px 10px -3px rgba(0, 0, 0, 0.35);
}

.bayk9-cp-navbtn-outline:hover {
	background: #eef2ff;
	border-color: #eef2ff;
}

.bayk9-cp-navbtn-solid {
	background: linear-gradient(135deg, #0b5ed7, #6d5efc);
	color: #fff !important;
	border: 1.5px solid transparent;
	box-shadow: 0 4px 12px -4px rgba(11, 94, 215, 0.6);
}

.bayk9-cp-navbtn-solid:hover {
	filter: brightness(1.08);
	color: #fff !important;
}

@media (max-width: 767px) {
	.bayk9-cp-nav-item {
		width: auto !important;
		display: block !important;
		margin: 0.5em 0.9em !important;
	}

	.bayk9-cp-navbtn {
		width: auto;
		padding: 0.35em 0.95em;
		font-size: 0.72em;
	}
}
