body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #f1f1f1;
}

.header {
  padding: 2rem;
  background: linear-gradient(to bottom, #ed2939, transparent);
}

.header h1 {
  font-size: 2rem;
  margin: 0;
}

.header p {
  color: #ccc;
}

.header .controls {
  margin-top: 1rem;
}

.header button {
  background: #ed2939;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  margin-right: 0.5rem;
  cursor: pointer;
}

.playlist {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem auto;
  max-width: 900px;
}

.playlist th, .playlist td {
  text-align: left;
  padding: 0.8rem;
  border-bottom: 1px solid #333;
}

.playlist .artist {
  font-size: 0.85rem;
  color: #aaa;
}

.playlist tr:hover {
  background: rgba(255,255,255,0.05);
}

.player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #181818;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  border-top: 1px solid #333;
}

.player .controls button {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  margin: 0 0.3rem;
}

tr td {
	cursor: pointer;
}
