* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background-color: #f9f6f0;
  color: #2c2c2c;
  line-height: 1.7;
}

header {
  background-color: #1a3a2a;
  color: #f9f6f0;
  padding: 1.2rem 2rem;
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.translation-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.toggle-btn {
  background: transparent;
  border: 1px solid #f9f6f0;
  color: #f9f6f0;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
}

.toggle-btn.active {
  background-color: #f9f6f0;
  color: #1a3a2a;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.search-section {
  margin-bottom: 2rem;
}

.search-bar {
  display: flex;
  gap: 0.75rem;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-family: Georgia, serif;
}

.search-bar button {
  padding: 0.75rem 1.5rem;
  background-color: #1a3a2a;
  color: #f9f6f0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.search-bar button:hover {
  background-color: #2d5c42;
}

.results-section {
  min-height: 200px;
  margin-bottom: 3rem;
}

#results-container {
  background-color: #fff;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  padding: 1.5rem;
}

.placeholder-text {
  color: #999;
  font-style: italic;
}

.verse-card {
  border-bottom: 1px solid #e0d8cc;
  padding: 1rem 0;
}
.verse-card:last-child {
  border-bottom: none;
}

.verse-reference {
  font-weight: bold;
  color: #1a3a2a;
  margin-bottom: 0.3rem;
}

.verse-text {
  font-size: 1rem;
  color: #2c2c2c;
}

.verse-number {
  font-size: 0.7rem;
  font-weight: bold;
  color: #1a3a2a;
  margin-right: 0.2rem;
}

.browse-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #1a3a2a;
}

.testament-group {
  margin-bottom: 2rem;
}

.testament-group h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.75rem;
  font-weight: normal;
}

.book-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.book-btn {
  background-color: #fff;
  border: 1px solid #d0c8bc;
  color: #2c2c2c;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: Georgia, serif;
}

.book-btn:hover {
  background-color: #1a3a2a;
  color: #f9f6f0;
  border-color: #1a3a2a;
}

.book-btn:selected {
    background-color: #1a3a2a;
    color: #f9f6f0;
    border-color: #1a3a2a;
}
.coming-soon {
  font-size: 0.85rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 1rem;
}
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #aaa;
  border-top: 1px solid #e0d8cc;
  margin-top: 2rem;
}