body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fa6161;
}

.player {
  background: rgb(245, 194, 243);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: 350px;
  text-align: center;
}

#song-info p {
  margin: 5px 0;
  font-weight: bold;
}

.controls button {
  margin: 10px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

#progress, #volume {
  width: 100%;
  margin: 10px 0;
}

#playlist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

#playlist li {
  padding: 5px;
  cursor: pointer;
}
#playlist li.active {
  background: #4caf50;
  color: white;
  border-radius: 6px;
}
