table.book-index {
  border-collapse: collapse;
  width: auto;
  table-layout: auto;
}

table.book-index td {
  border: none;
  padding: 0.5em;
  text-align: left;
}

table.verse-table {
  border-collapse: collapse;
  width: 100%;
}

table.verse-table td {
  border: none;
  padding: 2em; /* Optional, for spacing */
  vertical-align: top; /* Align content to the top */
}

table.verse-table td:first-child {
  text-align: right;
  font-size: 1.5em;
}

table.navigation-bar {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid black; /* Outer border */
}

table.navigation-bar td {
  text-align: center;
  border-left: none; /* Remove inner left borders */
  border-right: none; /* Remove inner right borders */
  padding: 0.5rem;
}

table.navigation-bar td:first-child {
  border-left: 1px solid black; /* Add left border to the first cell */
}

table.navigation-bar td:last-child {
  border-right: 1px solid black; /* Add right border to the last cell */
}

