body {
  font-family: sans-serif;
  margin: 0;
  padding: 1rem;
  background-color: #121212;
  color: #eee;
}

h1, h2, h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #1db954; /* Spotify-Grün als Highlight */
}

#headline {
  cursor: pointer;
}

#search-container {
  padding: 0 16px; /* Gleicher Abstand links und rechts */
  margin-bottom: 1rem;
}

#search-input {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  padding: 12px 16px;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  box-sizing: border-box;
}

input[type="text"]::placeholder {
  color: #666;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  background: #222;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.9);
  color: #eee;
}

.track-cover {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 0.75rem;
}

.track-info {
  flex-grow: 1;
}

.track-title {
  font-weight: bold;
  font-size: 1rem;
}

.track-artist {
  font-size: 0.875rem;
  color: #aaa;
}

.track-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  margin-left: 0.75rem;
}

button {
  padding: 0.4rem 0.7rem;
  border: none;
  border-radius: 5px;
  font-size: 0.85rem;
  cursor: pointer;
  color: #eee;
  transition: background-color 0.3s ease;
}

button.add-btn {
  background: #1db954;
}

button.add-btn:hover {
  background: #17b44b;
}

button.vote-btn {
  background-color: #1DB954; /* Spotify Grün */
  border: none;
  color: #fff;
  padding: 2px 10px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
}

button.vote-btn:hover {
  background-color: #1ed760;
}

.votes {
  font-size: 0.8rem;
  color: #ccc;
}
