nav-tab {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	gap: var(--u-2xs);
	height: var(--u-sm);
}

nav-tab > * {
	cursor: pointer;
	transition: transform 0.1s;
	transform-origin: center center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
}

nav-tab > *:active {
	transform: scale(0.95);
}

nav-tab > :first-child {
	font-size: 2rem;
	margin-right: auto;
	cursor: auto;
}

nav-tab > :not(:first-child) {
	height: 100%;
}

nav-tab > *.on,
nav-tab > *:not(:first-child):hover {
	color: var(--color-blue);
}

nav-tab > *.on:after,
nav-tab > *:hover:not(:first-child):after {
	content: "";
	position: absolute;
	top: calc(50% + 1.25rem / 2 + 0.5rem);
	width: 100%;
	height: 2px;
	background: var(--color-blue);
	border-radius: 2px;
}
