.bible-container {
  display: flex;
  max-width: 100%;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.bible-book-nav {
  width: 200px;
  background: #f7f7f7;
  padding: 15px;
  border-right: 2px solid #ddd;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.bible-book-nav h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.bible-book-nav ul {
  list-style: none;
  padding: 0;
}

.bible-book-nav li {
  margin: 5px 0;
}

.bible-book-nav li.active a {
  font-weight: bold;
  color: #0073aa;
}

.bible-book-nav a {
  text-decoration: none;
  color: #333;
}

.bible-book-nav a:hover {
  color: #005177;
}

.bible-content {
  padding: 20px;
  flex: 1;
}

.bible-content h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.bible-content p {
  line-height: 1.6;
  margin-bottom: 8px;
}

.bible-content strong {
  color: #0073aa;
}

.bible-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.bible-nav-btn {
  background: #0073aa;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.bible-nav-btn:hover {
  background: #005177;
}

.bible-popup {
  position: absolute;
  z-index: 9999;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 12px;
  border-radius: 6px;
  max-width: 360px;
  color: #222;
}
