/* Mobile-first minimalist styles */
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #fff;
  color: #111;
  line-height: 1.6;
  padding: 1rem;
  margin: 0;
}

main {
  max-width: 600px;
  margin: auto;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 1rem;
}

.chorus {
  font-weight: bold;
}

/* Basic navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 0.75em 1em;
}

/* Nav title link (site name) */
.nav-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* Prevent highlight/underline/color change on title link hover/visited/active */
.nav-title:visited,
.nav-title:hover,
.nav-title:focus,
.nav-title:active {
  color: #fff;
  text-decoration: none;
}

/* Nav links */
.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 1em;
  font-size: 0.95em;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Optional: separator after each song */
.song-separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1.5em 0;
}
