.slrp-player {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	background: #16181d;
	color: #fff;
	padding: 10px 14px;
	border-radius: 10px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
}

.slrp-player.slrp-floating {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999999;
	border-radius: 0;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.slrp-player.slrp-pos-bottom { bottom: 0; }
.slrp-player.slrp-pos-top { top: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.slrp-now {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.slrp-logo {
	width: 38px;
	height: 38px;
	border-radius: 6px;
	object-fit: cover;
	background: #333;
	flex-shrink: 0;
}

.slrp-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.slrp-station-name {
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 180px;
}

.slrp-status {
	font-size: 11px;
	opacity: 0.7;
}

.slrp-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.slrp-play-btn {
	background: #e63946;
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slrp-play-btn:hover {
	background: #d62839;
}

.slrp-volume {
	width: 80px;
}

.slrp-station-select {
	background: #24272e;
	color: #fff;
	border: 1px solid #3a3d45;
	border-radius: 6px;
	padding: 6px 8px;
	font-size: 13px;
	max-width: 200px;
}

.slrp-close-btn {
	background: transparent;
	color: #fff;
	border: none;
	font-size: 16px;
	cursor: pointer;
	margin-left: auto;
	opacity: 0.7;
}

.slrp-close-btn:hover {
	opacity: 1;
}

@media (max-width: 600px) {
	.slrp-station-name { max-width: 110px; }
	.slrp-volume { width: 60px; }
	.slrp-station-select { max-width: 130px; }
}
