body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
}

/* NavBar */
header {
  background: #1db954;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

/* Song List */
main {
  padding: 20px;
  margin-bottom: 100px;
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.song-item {
  display: flex;
  align-items: center;
  background-color: #282828;
  padding: 10px;
  border-radius: 10px;
}

.song-item img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 5px;
}

.song-info {
  flex-grow: 1;
}

.song-info h4,
.song-info p {
  margin: 0;
}

.song-item button {
  padding: 8px 12px;
  background: #1db954;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Music Player */
.music-player {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #181818;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.left img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.center {
  flex-grow: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center input[type="range"] {
  width: 100%;
  margin-bottom: 5px;
}

.controls {
  display: flex;
  gap: 20px;
}

.right input {
  width: 100px;
}

