body {
  background-color: #101219;
  color: #f1f2f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bottom-toolbar {
  background-color: #101219;
  border-top: 1px solid #2f323f;
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agents-controller {
  margin-top: 16px;
}

#markdown-content {
  margin-top: 16px;
  padding-left: 32px;
  padding-right: 32px;
  margin-bottom: 32px;
}

#menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chapters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: 4px;
}

#reader-container {
  display: flex;
  padding: 16px 16px 116px 16px;
}

#verse-display {
  text-align: left;
  padding-bottom: 100px;
  border-left: 1px solid #2f323f;
  border-right: 1px solid #2f323f;
  padding-left: 16px;
  padding-right: 16px;
}

.reading-chunk {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.reading-chunk.text-left {
  text-align: left;
}

.spacer-chunk {
  margin-bottom: 0px;
}

.number {
  font-size: 8px;
  opacity: 0.5;
}

.guider {
  width: 1px;
  background-color: #2f323f;
  position: fixed;
  top: 0;
  bottom: 0;
  opacity: 0.5;
}

.guider-point {
  width: 4px;
  height: 4px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 76px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.focus-bar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  height: 32px;
  background: rgba(255, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  pointer-events: none;
  z-index: 10;
}

.display-none {
  display: none;
}

.cards {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
