/* Lyrics Container */
.lyrics-container {
  position: relative;
  margin-top: 20px;
}

.lyrics-display {
  height: 200px;
  overflow-y: auto;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  scroll-behavior: smooth;
  display: none; /* Hidden by default */
}

.lyrics-display.active {
  display: block;
}

.lyrics-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.lyrics-line {
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  text-align: center;
}

.lyrics-line.active {
  color: #DF6589;
  font-size: 1.1em;
  text-shadow: 0 0 8px rgba(223, 101, 137, 0.5);
}

/* Lyrics Toggle Button */
.lyrics-toggle {
  background: rgba(223, 101, 137, 0.2);
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s;
}

.lyrics-toggle:hover {
  background: rgba(223, 101, 137, 0.4);
}