body {
  background-color: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.player-wrapper {
  display: flex;
  flex-direction: row;
  background: #1e1e1e;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  overflow: hidden;
  width: 90%;
  max-width: 950px;
  height: 80vh;
}

/* LEFT SIDE */
.player-container {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

h1 {
  text-align: center;
  margin-top: 0;
}

.now-playing-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

#album-art {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #333;
}

#audio-player {
  width: 100%;
  margin: 10px 0;
}

#playlist {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;
  overflow-y: auto;
}

#playlist li {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #333;
  transition: background 0.2s;
}

#playlist li:hover {
  background-color: #333;
}

#playlist li.active {
  background-color: #2196f3;
}

/* RIGHT SIDE */
.lyrics-container {
  flex: 1;
  background: #181818;
  padding: 20px;
  border-left: 2px solid #333;
  overflow-y: auto;
}

.lyrics-container h2 {
  text-align: center;
  margin-top: 0;
}

#lyrics-box {
  background: #222;
  padding: 10px;
  border-radius: 10px;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100px;
}

/* Responsive layout */
@media (max-width: 700px) {
  .player-wrapper {
    flex-direction: column;
    height: auto;
  }

  .lyrics-container {
    border-left: none;
    border-top: 2px solid #333;
  }

  .now-playing-box {
    flex-direction: column;
  }
}
