/* Grundlayout */
body {
  font-family: Arial, sans-serif;
  background: #ffffff;          /* Weißer Hintergrund */
  color: #222;                  /* Dunkler Text für guten Kontrast */
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Container des Players */
.player-container {
  background: #f7f7f7;          /* Helles Grau für leichte Absetzung */
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Überschrift */
h1 {
  margin-bottom: 10px;
  color: #111;
}

/* Audio-Element */
audio {
  width: 100%;
  margin-top: 10px;
}

/* Steuerungsbuttons */
.controls button {
  background: #0078d7;           /* Microsoft-Blau (wirkt auch in IE freundlich) */
  border: none;
  color: white;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.controls button:hover {
  background: #005fa3;
}

/* Lautstärkeregler */
.volume-control {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.volume-control label {
  margin-right: 8px;
}
.volume-control input[type=range] {
  width: 120px;
}
#volume-value {
  margin-left: 8px;
}

/* Playlist */
#playlist {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
  max-height: 220px;
  overflow-y: auto;
  border-top: 1px solid #ccc;
}

#playlist li {
  padding: 8px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  color: #222;
  background: #fff;
}
#playlist li:hover {
  background: #e6f0ff;
}
#playlist li.active {
  background: #0078d7;
  color: white;
}

/* Aktueller Songtitel */
.current-track {
  margin-top: 15px;
}
#current-song {
  font-weight: bold;
  color: #111;
}

.cover {
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:12px;
}

