/* Basis reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Header */
.site-header {
  padding: 10px 20px;
  border-bottom: 1px solid #333;
  background: #000;
}

.site-header h1 {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 1px;
}

/* Layout */
.content {
  flex: 1;
  display: flex;
  min-height: 0;
}

/* Sidebar */
.sidebar {
  width: 220px;
  border-right: 1px solid #333;
  padding: 15px;
  background: #0a0a0a;
}

.song-list {
  list-style: none;
}

.song-list li {
  margin-bottom: 10px;
}

.song-list a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.song-list a:hover {
  color: #bbb;
}

/* Lyrics area */
.lyrics-area {
  flex: 1;
  background: #000;
}

.lyrics-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

/* Song page */
.song-page {
  padding: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

.song-page h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}

/* 🔙 Back button */
.back-button {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  background: #000;
  color: #d4af37; /* goud */
  border: 1px solid #d4af37;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.back-button:hover {
  background: #d4af37;
  color: #000;
}
