/* Bible Reader Styles */
.bible-loader {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  background: #f8fafc;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 6px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.bible-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  background: #f8fafc;
}

.bible-sidebar {
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 24px;
  overflow-y: auto;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.bible-controls h3 {
  margin: 0 0 20px;
  color: #1e293b;
  font-size: 24px;
  font-weight: 700;
}

.book-selector, .chapter-selector {
  margin-bottom: 16px;
}

.book-selector label, .chapter-selector label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
}

.book-selector select, .chapter-selector select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  color: #374151;
}

.book-selector select:focus, .chapter-selector select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bible-navigation {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.btn-nav {
  flex: 1;
  padding: 10px 16px;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-nav:hover:not(:disabled) {
  background: #2563eb;
}

.btn-nav:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.bible-bookmarks {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.bible-bookmarks h4 {
  margin: 0 0 16px;
  color: #374151;
  font-size: 16px;
  font-weight: 600;
}

.bookmark-item {
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.bookmark-item:hover {
  background: #e2e8f0;
}

.bookmark-item .bookmark-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
}

.bookmark-item .bookmark-ref {
  color: #64748b;
  font-size: 12px;
  margin-top: 2px;
}

.no-bookmarks {
  color: #9ca3af;
  font-style: italic;
  margin: 0;
}

.bible-content {
  padding: 32px;
  overflow-y: auto;
  background: #ffffff;
}

.bible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.bible-header h1 {
  margin: 0;
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
}

.bible-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-bookmark {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #374151;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-bookmark:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.btn-bookmark:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.font-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px;
}

.btn-font-control {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #374151;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-font-control:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.btn-font-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#font-size-display {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  min-width: 50px;
  text-align: center;
}

.theme-controls {
  display: flex;
  align-items: center;
}

.btn-theme {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.btn-theme:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* Dark mode styles */
.bible-container.dark-mode {
  background: #1f2937;
}

.bible-container.dark-mode .bible-sidebar {
  background: #374151;
  border-right-color: #4b5563;
}

.bible-container.dark-mode .bible-content {
  background: #1f2937;
}

.bible-container.dark-mode .bible-controls h3,
.bible-container.dark-mode .bible-bookmarks h4 {
  color: #f9fafb;
}

.bible-container.dark-mode .book-selector label,
.bible-container.dark-mode .chapter-selector label {
  color: #d1d5db;
}

.bible-container.dark-mode .book-selector select,
.bible-container.dark-mode .chapter-selector select {
  background: #4b5563;
  border-color: #6b7280;
  color: #f9fafb;
}

.bible-container.dark-mode .bible-header h1 {
  color: #f9fafb;
}

.bible-container.dark-mode .bible-text {
  color: #d1d5db;
}

.bible-container.dark-mode .bible-text .verse-text {
  color: #e5e7eb;
}

.bible-container.dark-mode .bible-text .verse-number {
  color: #9ca3af;
}

.bible-container.dark-mode .welcome-message {
  color: #9ca3af;
}

.bible-container.dark-mode .bible-footer {
  color: #9ca3af;
  border-top-color: #4b5563;
}

.bible-container.dark-mode .btn-nav {
  background: #3b82f6;
  color: #ffffff;
}

.bible-container.dark-mode .btn-nav:hover:not(:disabled) {
  background: #2563eb;
}

.bible-container.dark-mode .btn-bookmark,
.bible-container.dark-mode .btn-font-control,
.bible-container.dark-mode .btn-theme {
  background: #4b5563;
  border-color: #6b7280;
  color: #f9fafb;
}

.bible-container.dark-mode .btn-bookmark:hover,
.bible-container.dark-mode .btn-font-control:hover,
.bible-container.dark-mode .btn-theme:hover {
  background: #6b7280;
  border-color: #9ca3af;
}

.bible-container.dark-mode .font-controls {
  background: #4b5563;
  border-color: #6b7280;
}

.bible-container.dark-mode #font-size-display {
  color: #d1d5db;
}

.bible-container.dark-mode .bookmark-item {
  background: #4b5563;
  color: #f9fafb;
}

.bible-container.dark-mode .bookmark-item:hover {
  background: #6b7280;
}

.bible-container.dark-mode .bookmark-item .bookmark-title {
  color: #f9fafb;
}

.bible-container.dark-mode .bookmark-item .bookmark-ref {
  color: #9ca3af;
}

.bible-container.dark-mode .no-bookmarks {
  color: #6b7280;
}

.bible-text {
  line-height: 1.8;
  font-size: 18px;
  color: #374151;
  max-width: 800px;
  margin: 0 auto;
}

.bible-text .verse {
  margin-bottom: 12px;
  padding: 4px 0;
}

.bible-text .verse-number {
  color: #6b7280;
  font-weight: 600;
  margin-right: 8px;
  font-size: 14px;
}

.bible-text .verse-text {
  color: #1f2937;
}

.welcome-message {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  margin: 60px 0;
}

.bible-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  color: #6b7280;
  font-size: 14px;
}

.verse-count {
  font-weight: 600;
}

.bible-version {
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bible-container {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
  
  .bible-sidebar {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    max-height: 300px;
  }
  
  .bible-content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .bible-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .bible-header h1 {
    font-size: 24px;
  }
  
  .bible-text {
    font-size: 16px;
  }
  
  .bible-content {
    padding: 16px;
  }
}

/* Font size variations */
.bible-text.font-small { font-size: 14px; }
.bible-text.font-medium { font-size: 18px; }
.bible-text.font-large { font-size: 22px; }
.bible-text.font-extra-large { font-size: 26px; }
