.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: flex-start;
	margin: 16px 0;
}

.tabs > button {
	-webkit-appearance: none;
	appearance: none;
	font-family: CMUTypewriterLight, 'Courier New', Courier, monospace;
	background-color: rgba(255, 255, 255, 0.85);
	border: 0.5vw double black;
	border-radius: 1vw;
	padding: 8px 18px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.18s, box-shadow 0.18s, background-color 0.18s;
	box-shadow: none;
	color: black;
}

.tabs > button:hover {
	transform: scale(1.08);
}

.tabs > button:focus {
	outline: none;
	box-shadow: 0 0 0.4vw rgba(0,0,0,0.25) inset;
}

.tabs > button.active {
	background-color: rgba(151, 149, 149, 0.85);
	transform: translateY(-2px) scale(1.02);
}

.tabs > button.small {
	padding: 6px 12px;
	font-size: 16px;
}


/* Utility: visually-hidden content for accessibility if needed */
.tabs .sr-only {
	position: absolute !important;
	height: 1px; width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
