#music-player {
  position: fixed;
  top: 100px;
  left: 100px;
  width: 250px;
  background: #ffb6c1;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10000;
  font-family: sans-serif;
}

#player-header {
  background: #ff69b4;
  padding: 8px;
  cursor: move;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-weight: bold;
}

#audio {
  width: 100%;
  outline: none;
  border-radius: 0 0 12px 12px;
}

#playlist {
  list-style: none;
  margin: 0;
  padding: 10px;
  max-height: 150px;
  overflow-y: auto;
}

#playlist li {
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

#playlist li:hover {
  background: #ff8cb0;
}

#playlist li.active {
  background: #ff1493;
}
