.player-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.audio-player {
  background: #B0C4DE;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

.progress-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.progress {
  height: 100%;
  width: 0;
  background: #00416A;
}

.time {
  font-size: 12px;
  color: #555;
  text-align: right;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.play-btn {
  background: #00416A;
  border: none;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 1;
}

/* Play/Pause Symbol automatisch wechseln */
.play-btn.is-playing {
  content: '⏸';
}
.play-btn:not(.is-playing) {
  content: '▶';
}

select, input[type="range"] {
  flex: 1;
  min-width: 70px;
  max-width: 120px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
