/* Streamstatus Panel */
.channelbox {
	display: block;
	width: 180px;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 12px;
	text-align: center;
	margin-bottom: 15px;
	border: 0px solid #999;
}

.stream-title {
	font-size: 12pt;
	padding-top: 10px;
}

.stream-description {
	font-size: 10pt;
	padding: 0;
}

.cover {
	width: 100%;
	text-align: center;
	margin: 5pt 0 0 0;
}

.cover-img {
        border: none;
	border-radius: 5px;
	width: 150px;
	height: 150px;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	padding: 0;
}

.onair {
	width: 100%;
	height: 100%;
	text-align: center;
	margin: 10pt 0 10pt 0;
	padding: 0;
}
.onair img {
	max-width: 100%;
	margin: 2%;
	border: none;
	border-radius: 5px;
}

.dj-avatar img {
        position: center
	width: 150px; /* Breite festlegen */
        height: 150px; /* Höhe gleich Breite für Kreis */
        border-radius: 50%; /* Macht das Bild rund */
        transition: transform 0.5s ease-in-out; /* Animiert die Drehung */
        object-fit: cover; /* Verhindert Verzerrung */
  }

  .rundes-bild:hover {
    transform: rotate(360deg); /* Dreht das Bild um 360 Grad */
  }
.players {
	margin: 10pt 0 10pt 0;
	text-align: center;
}

.playerimg {
	width: auto;
	height: auto;
	width: 40px;
	margin: 2%;
	text-align: center;
	display: inline-block;
	border: none;
}

.playerimg img {
	height: auto;
	max-width: 100%;
}

.external-player {
	margin: 10pt 0 10pt 0;
	text-align: center;
}

.external-player img {
	max-height: 40px;
}

.wishbox {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 10pt 0 10pt 0;
}

.listeners {
	width: 100%;
	font-size: 9pt;
	height: 11pt;
	margin-bottom: 5px;
}

.song-title {
	display: block;
	width: 100%;
	font-size: 10pt;
	height: auto;
	margin: 0;
	border: none;
}

.lauftext {
	max-width: 100vw; /* iOS braucht das */
	white-space: nowrap;
	overflow: hidden;
	font-size: 11pt;
}

.lauftext span {
	display: inline-block;
	padding-left: 105%; /* die zusätzlichen 5% erzeugen einen verzögerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
	animation: marquee 10s linear infinite;
}

/* mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
.lauftext span:hover {
	animation-play-state: paused;
}

/* Bewegungsanimation */
@keyframes lauftext {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.marquee {
	width: 100%; /* iOS braucht das */
	white-space: nowrap;
	overflow: hidden;
	/* hier evtl. noch font-size, color usw. */
}

.marquee span {
	display: inline-block;
	padding-left: 105%; /* die zusÃ¤tzlichen 5% erzeugen einen verzÃ¶gerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
	animation: marquee 10s linear infinite;
}

/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
.marquee span:hover {
	animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-102%);
	}
}

/* Administration */
.admintitle {
	margin: 10pt;
	text-align: center;
	width: 100%;
	font-size: 14pt;
	font-weight: bold;
}

.infobox {
	margin: 20px;
	margin-top: 40px;
	padding: 10px;
	border: 1px solid rgb(32, 32, 65);
	background-color: rgb(232, 232, 252);
	color: rgb(0, 0, 0);
}

.infobox .title {
	font-weight: bold;
}

.admin-error {
	margin: 20px;
	padding: 10px;
	border: 1px solid rgb(255, 0, 0);
	background-color: rgb(250, 200, 200);
	color: rgb(0, 0, 0);
}

.admin-success {
	margin: 20px;
	padding: 10px;
	border: 1px solid rgb(20, 112, 2);
	background-color: rgb(200, 252, 189);
	color: rgb(20, 112, 2);
	text-align: center;
}

.ss-adminform {
	width: 300px;
	max-width: 100%;
	margin: 0 auto;
}

.tbl-header {
	font-size: 12pt;
	font-weight: bold;
	padding: 10px;
	text-align: center;
}

.small {
	font-size: 7pt;
}

#formbuttons {
	text-align: center;
	display: none;
	padding: 20px;
}

#coverlist {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}

.cover-box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border-radius: 5px;
	width: 230px;
	padding: 0px;
	display: inline-block;
	margin: 5px;
}

.searchtext-marker {
	background-color: #fdbe03;
	color: #000000;
}

.btn-editcover {
	margin: 5px;
	width: auto;
	max-width: 40%;
	padding: 2px;
	background-color: #fdbe03;
	color: #000;
	border: 1px solid #000000;
	border-radius: 5px;
	cursor: pointer;
}

.btn-delcover {
	margin: 5px;
	width: auto;
	max-width: 40%;
	padding: 2px;
	background-color: #991111;
	color: #fdbe03;
	border: 1px solid #fdbe03;
	border-radius: 5px;
	cursor: pointer;
}

/* =====================================
   DJ AVATAR IM STREAMSTATUS
   150x150 – DUNKELBLAUER GLOW
   DREHUNG NUR BEI HOVER
   ===================================== */

.dj-avatar img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;

    border-radius: 50%;
    border: 3px solid #0b2a5b; /* dunkles Blau */

    box-shadow:
        0 0 12px rgba(11,42,91,0.8),
        0 0 28px rgba(11,42,91,0.6),
        0 0 45px rgba(11,42,91,0.4);

    transition:
        transform 0.8s ease,
        box-shadow 0.8s ease;
}

/* Drehung nur bei Hover */
.dj-avatar img:hover {
    transform: rotate(360deg) scale(1.05);

    box-shadow:
        0 0 18px rgba(11,42,91,1),
        0 0 40px rgba(11,42,91,0.85),
        0 0 65px rgba(11,42,91,0.6),
        0 0 90px rgba(11,42,91,0.4);
}

