body {
	font-family: Arial, sans-serif;
	background-color: #111e30;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	cursor: default;
	color: #FFF;
}

.home-button {
  color: #FFF !important;
}

.station-link.globe {
 color: #FFF !important;
}

.now{
	font-weight:bold;
	
}

.current_track_artist{
	
	font-weight:bold;
	
}

.history_artist{
	font-weight:bold;
}

.song-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.station-link {
	display: flex;
	align-items: center;
	justify-content: center;
}

.station-logo {
	width: 150px;
	height: 150px;
	opacity: 0.4;
	transition: opacity 0.3s ease;
	margin: 0 10px;
	cursor: pointer;
}

.station-logo:hover {
	opacity: 1;
}

.arrows {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	position: absolute;
	bottom: -40px;
}

.arrow_mobile {
	display: none;
}

.arrow {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #fff;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.arrow:hover {
	opacity: 1;
}

.cover-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.cover {
	width: 300px;
	height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 20px;
}

.cover:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 5px;
}

.cover-loader {
	display: none;
	position: absolute;
	top: 40%;
	transform: translate(-50%, -50%);
	border: 5px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	border-top: 5px solid #939292;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	z-index: 1;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.player-container {
	background-color: #4b5a62;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	max-width: 620px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.current-song {
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #e63845;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.current-show {
	display: flex;
	align-items: center;
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #e63845;
}

.home-button {
	margin-right: auto;
	width: 25px;
	cursor: pointer;
	text-decoration: none;
	font-size: 18px;
}

.displayname {
	font-size: 25px;
	margin-right: 25px;
	flex-grow: 1;
}

.song-content {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.song-history-extended {
	display: none;
	overflow: hidden;
}

.song-info div {
	margin-bottom: 5px;
}

.song-history {
	padding: 20px;
	cursor: default;
}

.show-more {
	padding: 0px 20px 20px 20px;
	cursor: pointer;
}

.invisible {
	display: none;
	padding-top: 0px;
}

.song {
	padding: 10px;
	background-color: #333;
	border-radius: 5px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
}

.song:last-child {
	margin-bottom: 0;
}

.song-history .song .song-time {
	background-color: #0d69b2;
	color: white;
	padding: 3px 6px;
	border-radius: 3px;
	width: 45px;
	text-align: center;
	display: inline-block;
	margin-bottom: 5px;
}

.song.hidden {
	display: none;
}

.player-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

#play-pause-button {
	background-color: #e63845;
	color: black;
	border: 1px solid #0d69b2;
	padding: 0;
	cursor: pointer;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-right: 15px;
}

#volume-slider {
	width: 180px;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 8px;
	background-color: #0d69b2;
	outline: none;
	opacity: 0.7;
	transition: opacity 0.15s ease-in-out;
	border-radius: 5px;
}

/* Grundstyle */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 8px;
  background: transparent; /* verhindert unerwünschtes Styling */
  border-radius: 5px;
  outline: none;
}

/* Chrome, Safari, Edge – Track */
input[type="range"]::-webkit-slider-runnable-track {
  background: #ccc;
  height: 8px;
  border-radius: 5px;
}

/* Chrome, Safari, Edge – Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #434343;
  border: 2px solid #ccc; /* sorgt für den sichtbaren Rand */
  cursor: pointer;
  margin-top: -6px; /* vertikale Ausrichtung am Track */
}

/* Firefox – Track */
input[type="range"]::-moz-range-track {
  background: #ccc;
  height: 8px;
  border-radius: 5px;
}

/* Firefox – Thumb */
input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #434343;
  border: 2px solid #ccc; /* wie in Webkit */
  cursor: pointer;
}

/* Edge Legacy / IE – optional */
input[type="range"]::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
  height: 8px;
}
input[type="range"]::-ms-fill-lower {
  background: #434343;
  border-radius: 5px;
}
input[type="range"]::-ms-fill-upper {
  background: #ccc;
  border-radius: 5px;
}
input[type="range"]::-ms-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #434343;
  border: 2px solid #ccc;
  cursor: pointer;
}


.station-link.globe {
    font-size: 1.5em;
    margin-left: -1.5em;
    text-decoration: none;
}


@media (max-width: 600px) {
	.station-logo {
		width: 140px;
		height: 140px;
	}

	.cover {
		width: 220px;
		height: 220px;
	}

	.arrow {
		display: none;
	}

	#volume-slider {
		display: none;
	}

	#play-pause-button {
		margin: 0 35px;
	}

	.arrow_mobile {
		display: block;
		background: none;
		border: none;
		font-size: 24px;
		cursor: pointer;
		color: #fff;
		opacity: 1;
		transition: opacity 0.3s ease;
	}
}