body {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.player {
  width: 350px;
  background-color: #333;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.title {
  font-weight: bold;
}

.controls button {
  margin: 5px;
  padding: 5px 10px;
  cursor: pointer;
}

.controls input[type="range"] {
  vertical-align: middle;
}

.progress-container {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.progress-container input[type="range"] {
  flex: 1;
  margin: 0 5px;
}

.now-playing {
  background-color: #111;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 13px;
  text-align: center;
}

.auto-next {
  margin-bottom: 10px;
}

.playlist-container {
  margin-top: 10px;
}

.playlist-container input[type="file"] {
  margin-bottom: 5px;
}

#playlist {
  max-height: 200px; /* scroll jika lebih dari 5 lagu */
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

#playlist li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #444;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 4px;
  cursor: grab;
}

#playlist li.dragging {
  opacity: 0.5;
}

#playlist li button {
  background-color: red;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 3px;
  padding: 2px 5px;
}

/* Themes */
.player.default { background-color: #333; }
.player.blue { background-color: #1e90ff; }
.player.red { background-color: #ff4c4c; }
.player.green { background-color: #4caf50; }
.player.purple { background-color: #800080; }
