body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #fffdf7;
  color: #2e1c0c;
}

header {
  background-color: #f6e8d7;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #d4b886;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.subtitle {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #5e4a36;
}

main {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  gap: 1rem;
}

aside#chapterList {
  flex: 1;
  max-width: 200px;
  padding: 1rem;
  background-color: #fff6e1;
  border: 1px solid #eedcb2;
  border-radius: 8px;
}

#chapterList button {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: #fef4d4;
  border: 1px solid #d9c8a2;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
}

#chapterList button:hover {
  background-color: #fce8aa;
}

section#verseDisplay {
  flex: 3;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #f0e0c0;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 75vh;
}

.verse {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-bottom: 1px dashed #ccc;
  border-radius: 4px;
}

.verse strong {
  display: block;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.verse em {
  color: #7d6143;
}

/* Learn More button styles */
.learn-more-btn {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #d4b886;
  color: #2e1c0c;
  border: 1px solid #b8a470;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'Noto Serif Devanagari', serif;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.learn-more-btn:hover {
  background-color: #c5a875;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.learn-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Remove the old clickable verse styles */

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f6e8d7;
  font-size: 0.9rem;
  border-top: 1px solid #d4b886;
  margin-top: 2rem;
}

.welcome-note {
  font-style: italic;
  color: #777;
}

#chapterList ul,
#chapterList li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chapter-button {
  display: block;
  width: 100%;
  margin: 0.4rem 0;
  padding: 0.6rem;
  background-color: #fef4d4;
  border: 1px solid #d9c8a2;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.2s ease;
}

.chapter-button:hover {
  background-color: #fce8aa;
}