body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background: #f9f9f9;
}
.container {
	max-width: 999px;
	margin: 0 auto;
	padding: 0 15px;
}
header {
	background: #333;
	color: #fff;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 15px 0 5px;
}
.logo {
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
}
.logo img {
	width: 30px;
	height: 30px;
}
.search-container {
	display: flex;
	align-items: center;
	flex-grow: 1;
	justify-content: flex-end;
	padding-left: 15px;
	padding-right: 15px;
}
form {
	display: flex;
	width: 100%;
	justify-content: flex-end;
}
.search {
	display: flex;
	max-width: 400px;
	flex: 1;
}
.search input {
	flex: 1;
	padding: 8px;
	border: none;
	border-radius: 4px 0 0 4px;
	min-width: 50%;
}
.search button {
	padding: 8px 12px;
	border: none;
	background: #555;
	color: white;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}
.search button:hover {
	background: #999;
}
a {
	color: #111;
	text-decoration: underline;
}
a:hover {
	color: #333333;
	text-decoration: none;
}
.hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
	height: 20px;
	margin-left: 10px;
}
.hamburger div {
	width: 25px;
	height: 3px;
	background-color: white;
}
.alphabet-wrapper {
	background: #222;
	padding: 8px 0;
	text-align: center;
}
.alphabet {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.alphabet-row {
	margin: 5px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.alphabet a {
	color: #fff;
	margin: 2px 4px;
	padding: 4px 6px;
	border: 1px solid #999;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.2s;
	font-size: 12px;
}
.alphabet a:hover {
	background: #555;
}
.content-wrapper {
	display: flex;
	flex-wrap: nowrap;
}
.main {
	flex: 1;
	background: #fff;
	padding: 20px;
	margin: 20px 10px 20px 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1 {
	font-size: 21px;
	margin-top: 0px;
}
h2 {
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 7px;
}
pre {
	white-space: pre-wrap;
}
.sidebar a {
	color: #111;
	margin: 7px;
	display: block;
}
.sidebar a:hover {
	text-decoration: none;
}
.sidebar {
	width: 250px;
	background: #f0f0f0;
	padding: 20px;
	display: block;
}
footer {
	background: #222;
	color: #aaa;
	text-align: center;
	padding: 20px 0;
	font-size: 14px;
}
.footer-links a {
	color: #aaa;
	margin: 0 10px;
	text-decoration: none;
}
.close-btn {
	display: none;
	text-align: right;
	font-size: 20px;
	cursor: pointer;
	margin-bottom: 10px;
}
.table {
	display: grid;
	grid-template-columns: 64% 18% 18%;
	width: 100%;
	border: 1px solid #ccc;
}
.row .l {
	text-align: left;
}
.row {
	display: contents;
}
.row a {
	color: #111;
	text-decoration: underline;
}
.row a:hover {
	color: #333333;
	text-decoration: none;
}
.cell {
	padding: 10px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	text-align: center;
}
.header .cell {
	font-weight: bold;
	background: #f0f0f0;
	text-align: center;
}
.pagination {
	margin-top: 20px;
	text-align: center;
}
.pagination a {
	margin: 0 5px;
	padding: 5px 10px;
	background: #ddd;
	color: black !important;
	text-decoration: none !important;
	border-radius: 3px;
}
.pagination a:hover {
	background: var(--accent);
}
.pagination a.current {
	background: #666;
	color: white !important;
}
.txt {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 3px solid #666666;
}

@media (max-width: 600px) {
	.header-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.logo {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	.search-container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.search {
		flex-grow: 1;
		margin-right: 10px;
	}
	.search input {
		width: 100%;
	}
	.hamburger {
		display: flex;
	}
	.sidebar {
		display: none;
		background: #444;
		color: white;
		padding: 20px;
		position: fixed;
		top: 0;
		right: -100%;
		width: 250px;
		height: 100%;
		overflow-y: auto;
		transition: right 0.3s ease;
		z-index: 999;
	}
	.sidebar a {
		color: #fff;
	}
	.sidebar.active {
		right: 0;
		display: block;
	}
	.close-btn {
		display: block;
	}
	.content-wrapper {
		flex-direction: column;
	}
	.main {
		margin: 20px 0;
	}
}