.radio_layout {
	display: grid;
	gap: 16px;
	margin: 1.1rem 0 0;
}

.panel {
	border: 1px solid #e0d4bd;
	background: #f7f0df;
	border-radius: 6px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 280px;
}

.panel_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.panel_label {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: .75rem;
	color: #6b5a45;
}

.radio_layout a {
	border-bottom: 0;
	text-decoration: underline dotted;
	text-decoration-thickness: .06em;
	text-underline-offset: .12em;
}

.stat_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
}

.stat_grid p {
	margin: 0;
	padding: 6px 9px;
	border: 1px solid #e0d4bd;
	background: #f9f3e6;
	border-radius: 4px;
}

.stat_grid small {
	font-size: .71rem;
	line-height: 1.2;
}

.stat_grid strong {
	display: block;
	font-size: .98rem;
	line-height: 1.2;
	color: #2b2418;
}

#now_playing_title {
	display: block;
	align-self: flex-start;
	max-width: 100%;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	overflow-wrap: anywhere;
}

#now_playing_artist {
	margin: 0;
	color: #6b5a45;
}

#skip_vote_button {
	font-family: inherit;
	font-size: .9rem;
	color: #2b2418;
	background: #efe4cc;
	border: 1px solid #d8cab1;
	padding: 6px 8px;
	border-radius: 4px;
	cursor: pointer;
}

#skip_vote_button:hover {
	border-color: #c1b095;
}

#skip_vote_button:disabled {
	opacity: .6;
	cursor: not-allowed;
}

#now_playing_audio {
	width: 100%;
	min-height: 40px;
	border: 1px solid #d8cab1;
	border-radius: 4px;
	background: #f9f3e6;
}

#queue_list {
	margin: 0;
}

#queue_list li {
	padding: .55rem 0;
}

.queue_item_head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: baseline;
	column-gap: 6px;
	min-width: 0;
}

.queue_item_index {
	margin: 0;
	color: #5f4a2f;
	font-size: .9rem;
}

.queue_item_title {
	display: block;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.queue_item_length {
	margin-left: 4px;
	white-space: nowrap;
	font-size: .82rem;
	color: #5f4a2f;
	font-variant-numeric: tabular-nums;
}

.queue_item_artist {
	margin: .18rem 0 0;
	color: #6b5a45;
}

#queue_empty {
	margin: .15rem 0 0;
}

@media (min-width:720px) {
	.radio_layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.panel {
		min-height: 0;
	}
}
