.namelist-wrapper {
	display: flex;
	flex-direction: column;
}
.namelist-wrapper.tborder {
	width: 95%;
	margin: auto;
}
.namelist-title {
	padding: 10px;
	background: var(--accent-two);
	border-radius: 5px;
}
.namelist-header,
.namelist-row {
	display: flex;
	gap: 10px;
}
.namelist-header .namelist-col,
.namelist-row .namelist-cell {
	flex: 1 1 25%;
	padding: 10px;
}
.namelist-header .namelist-col {
	text-align: center;
	background: var(--main-accent);
	border-radius: 5px 5px 0 0;
	font-weight: bold;
}
.namelist-sep {
	padding: 10px;
	background: var(--accent-three);
	margin-top: 20px;
	margin-bottom: 5px;
	border-radius: 5px;
}
.namelist-cell {
	border: 3px solid var(--main-accent);
	border-top: none;
	border-radius: 0 0 5px 5px;
	height: 150px;
	overflow: auto;
}
.namelist-cell div strong {
	color: var(--main-font-color);
	font-weight: normal;
	font-style: italic;
	font-size: 12px;
}