body {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
	background-color: black;
	color: white;
}
body.admin {
	background-color: white;
	color: black;
	padding: 16px;
}
h1, h2, h3, p {
	margin: 8px 0;
}
input, select, button {
	margin: 2px;
	border-radius: 4px;
	border: 1px solid #a0a0a0;
	padding: 4px;
	background-color: white;
	color: black;
}
.form {
	border: 1px solid #808080;
	padding: 32px;
	background-color: #f0f0f0;
	color: black;
}
.center {
	position: fixed;
	z-index: 99;
	left: 50vw;
	top: 50vh;
	transform: translate(-50%, -50%);
	width: 100vw;
	max-width: 512px;
	height: fit-content;
}
div.list {
	padding: 32px;
}
div.player {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	justify-items: flex-start;
	align-content: center;
	align-items: center;
	width: 100%;
	height: 48px;
	border-bottom: 1px solid #d0d0d0;
}
div.player.hidden {
	opacity: 0.25;
}
div.player h1 {
	margin: 0 8px;
	font-size: 12pt;
	font-weight: 400;
}
