/* Minimal runnable music player styles to resemble the reference image */
:root {
  --bg: #0b0b0f;
  --panel: #141618;
  --text: #e8e8e8;
  --muted: #a1a1a1;
  --green: #22c55e;
  --radius: 12px;
}
/* Center player container styling */
.container-player { display:flex; flex-direction:column; gap:12px; padding:12px; }
#player { display:flex; flex-direction:column; gap:12px; background: #11161d; border-radius: 12px; padding: 12px; }
#playlist { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:6px; }
.player-controller { display:flex; align-items:center; justify-content:space-between; padding:8px 0; }
#waveform { height:60px; background:#1e232a; border-radius:8px; }
#timers { display:flex; justify-content:space-between; font-family: monospace; width:120px; color:#ddd; }
#controls { display:flex; gap:12px; }
#volumeSlider { width: 180px; }
.playlist-table, #playlist-table { display:none; }
/* Responsive tweaks under 800px */
@media (max-width: 800px){
  #waveform { height: 40px; }
  #volumeSlider { width:120px; }
}
