@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;
		scrollbar-color: hsl(0 0% 50% / 15%) transparent;
	}

	:root:hover { scrollbar-color: hsl(0 0% 50% / 30%) transparent }
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	padding: 0 8px;
}

input[type="search"] {
	backdrop-filter: blur(.1rem) brightness(0.25);
	background-color: hsl(0 0% 50% / 20%);
	border: 1px solid hsl(0 0% 50% / 15%);
	border-radius: .5em;
	display: block;
	margin: 0 auto 1rem;
	padding: .75em 1em;
	position: sticky;
	top: 8px;
	width: 100%;
	z-index: 1;
}

input[type="search"]:focus { outline: 2px solid hsl(0 0% 50% / 15%) }

table { width: 100% }
th { text-align: left }
th:not(:first-child) { text-align: right }
th, td { padding: .25em clamp(4px, 1vw, .75em) }
td:not(:first-child) { direction: rtl }

[phonetic]::after {
	content: attr(phonetic);
	float: inline-end;
	font-style: italic;
	margin-right: 1.5rem;
	opacity: .5;
}