html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #111;
	color: #f2f2f2;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.app {
	height: 100%;
	display: grid;
	grid-template-rows: 1fr auto;
}

.player-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

#player {
	width: 100%;
	height: 100%;
	min-height: 280px;
}

.play-fallback {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	border: 1px solid #2f6feb;
	background: #2f6feb;
	color: white;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 13px;
	cursor: pointer;
}

.play-fallback.hidden {
	display: none;
}

.status {
	padding: 10px 12px;
	font-size: 12px;
	color: #c4c4c4;
	border-top: 1px solid #2d2d2d;
	background: #171717;
}
