/********************************************************************************************************************/
/*Style Mediaplayer im Promotionbereich                                                                             */
/********************************************************************************************************************/
   
/* body {
  margin: 0;
  font-family: sans-serif;
  background: #121212;
  color: #fff;
} */

.player {
  display: flex;
  align-items: center;
  background: #1e1e1e;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  gap: 15px;
  flex-wrap: wrap;
}
.cover {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #333;
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}
.title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}
.controls {
  margin-top: 10px;
}
.controls ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.controls li {
  cursor: pointer;
  transition: 0.2s;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.controls li img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); /* Weiss für Dark Mode */
  transition: 0.2s;
}
.controls li:hover img {
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(120deg); /* Grüner Hover */
}
.controls li.active img {
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(120deg); /* Grün wenn aktiv */
}
input[type=range] {
  width: 100%;
  margin-top: 8px;
  accent-color: #1db954;
}
select {
  padding: 6px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: #333;
}

@media (max-width: 700px) {
  .player {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cover {
    margin: 0 auto;
  }
  .info {
    align-items: center;
  }
  .controls ul {
    justify-content: center;
  }
  input[type=range] {
    margin: 10px 0;
  }
}

 ul.songList { 
  /* list-style-type: none; */
  list-style:none; 
	padding:0; 
	margin:0; 
}
ul.songList li { 
	/* cursor:pointer; 
	padding:5px 10px; 
	margin:2px 0;  */
	background:#222; 
	border-radius:5px; 
	transition:background 0.2s; 
}
ul.songList li:hover { 
	background:#333; 
}
ul.songList li.activeSong { 
	background:#a00; 
	font-weight:bold; 
}   
/********************************************************************************************************************/
/*Style Mediaplayer im Promotionbereich   E N D E                                                                   */
/********************************************************************************************************************/
