body, select, label, h2, h3, div, option {
  font-family: "Times New Roman", serif;
}
button {
  font-family: "Times New Roman", serif;
}

/* Layout and toggle styling for Bible reader */
body {
  margin: 1em;
  padding: 0;
  line-height: 1.4;
  font-family: "Times New Roman", serif;
}
#verses {
  display: flex;
  flex-direction: column;
}
.verse {
  margin-bottom: 1em;
}
.verse-header {
  display: flex;
  align-items: flex-start;
}
.verse-number {
  font-weight: bold;
  margin-right: 0.5em;
}
.verse-text {
  flex: 1;
}
.comm-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5em;
  font-size: 0.9em;
}
.verse-comm {
  margin-top: 0.5em;
  padding-left: 1.5em;
  color: blue;
  font-style: italic;
}
@media (min-width: 600px) {
  .selectors {
    flex-direction: row;
  }
  .selectors select {
    width: 48%;
  }
}

/* Chapter navigation and location indicator */
.chapter-nav {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
}

.location-indicator {
  margin-left: auto;
  font-style: italic;
  color: #555;
}