.fls-player-row {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 🔝 Obere Zeile: Play + Titel (links) / Download (rechts) */
.fls-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 🎵 Play + Titel */
.fls-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fls-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.fls-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.icon-pause {
  display: none;
}

.fls-title {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 500;
}

/* 📥 Download rechts */
.fls-right {
  display: flex;
  align-items: center;
}

/* 🎚 Fortschritt + Zeit */
.fls-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.fls-progress {
  flex: 1;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  cursor: pointer;
}

.fls-progress::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #2b2b2b;
  border-radius: 50%;
  margin-top: -4px;
}

.fls-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #2b2b2b;
  border-radius: 50%;
  border: none;
}

.fls-time {
  font-size: 0.85rem;
  color: #999;
  min-width: 40px;
  text-align: center;
}

.fls-player-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px; /* ← genau 5px Abstand zwischen den Rows */
}

/* 📱 Mobil */
@media (max-width: 600px) {
  .fls-topbar {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .fls-left {
    flex: 1;
  }

  .fls-title {
    font-size: 1rem;
  }

  .fls-right {
    margin-left: auto;
  }

  .fls-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .fls-progress {
    width: 100%;
  }

  .fls-time {
    text-align: left;
  }
}