@charset "utf-8";
body {
  font-family: Georgia, serif;
  background: #f7f3ea;
  margin: 0;
  padding: 40px 20px;
  color: #222;
}

.title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

/* SEARCH */
#controls {
  text-align: center;
  margin-bottom: 15px;
}

#search {
  width: 300px;
  padding: 10px;
  font-size: 16px;
}

/* A–Z BAR */
#az-bar {
  text-align: center;
  margin-bottom: 25px;
}

.az-letter {
  display: inline-block;
  margin: 2px 4px;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

.az-letter:hover {
  background: #ddd;
}

.az-letter.active {
  background: #0b3d91;
  color: #fff;
}

/* TOC */
#toc {
  max-width: 800px;
  margin: auto;
}

.section {
  margin-bottom: 20px;
}

.section h2 {
  margin-top: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  font-size: 20px;
  cursor: pointer;
}

/* collapsible */
.section.collapsed .poem-list {
  display: none;
}

.poem-list {
  margin-top: 10px;
}

/* LINKS */
.poem-link {
  display: block;
  padding: 4px 0;
  text-decoration: none;
  color: #222;
  font-size: 15px;
}

.poem-link:hover {
  color: #0b3d91;
  padding-left: 5px;
}