/* AzuraCast Bottom Player - responsive fixed bottom player */
.azuracast-player {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
	background: #222;
	color: #fff;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	z-index: 99999;
	height: 72px;
	gap: 12px;
}

.azuracast-player .azp-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

.azuracast-player .azp-cover {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 6px;
	background: rgba(255,255,255,0.06);
}

.azuracast-player .azp-meta {
	overflow: hidden;
}

.azuracast-player .azp-title,
.azuracast-player .azp-artist {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.azuracast-player .azp-title {
	font-weight: 600;
	font-size: 14px;
}

.azuracast-player .azp-artist {
	font-size: 13px;
	opacity: 0.85;
}

.azuracast-player .azp-center {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 120px;
}

.azuracast-player .azp-playpause {
	border: none;
	background: transparent;
	color: inherit;
	font-size: 20px;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
}

.azuracast-player .azp-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 40px;
}

.azuracast-player .azp-toggle {
	border: none;
	background: transparent;
	color: inherit;
	font-size: 18px;
	cursor: pointer;
	padding: 6px;
}

.azuracast-player .azp-audio {
	display: none;
}

/* small screens */
@media (max-width: 600px) {
	.azuracast-player {
		padding: 8px;
		height: 64px;
	}
	.azuracast-player .azp-cover {
		width: 48px;
		height: 48px;
	}
	.azuracast-player .azp-center {
		min-width: 80px;
	}
	.azuracast-player .azp-title {
		font-size: 13px;
	}
}

/* hidden state */
.azuracast-player.hidden {
	transform: translateY(110%);
	transition: transform 300ms ease;
}

/* theme variable controlled inline by JS */
.azuracast-player[data-theme] {
	--azp-accent: #1e73be;
}

.azuracast-player .azp-playpause:focus,
.azuracast-player .azp-toggle:focus {
	outline: 2px solid rgba(255,255,255,0.12);
}
