.med-bible {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.med-bible h2,
.med-bible h3 {
  flex-shrink: 0;
  margin: 0;
}

.med-bible-version {
  font-weight: 700;
  color: #7a5a00;
  margin-right: 0.25em;
}

.med-bible-inner {
  margin-top: 4px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 6px 8px;
  background: #fafafa;
}

.med-bible-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.med-bible-search {
  width: 100%;
  box-sizing: border-box;
  padding: 7px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.med-bible-results {
  max-height: min(180px, 28vh);
  overflow-y: auto;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eee;
}

.med-bible-results-empty {
  margin: 0;
  padding: 6px 8px;
  font-size: 11px;
  color: #888;
}

.med-bible-results-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.med-bible-hit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 6px 10px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
}

.med-bible-hit:hover {
  background: #fff8e6;
}

.med-bible-hit-ref {
  font-weight: 700;
  color: #a65c00;
}

.med-bible-hit-txt {
  color: #444;
  line-height: 1.35;
}

.med-bible-nav {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.med-bible-select {
  flex: 1;
  min-width: 0;
  padding: 5px 8px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

.med-bible-chapter {
  flex: 0 0 72px;
}

.med-bible-verses {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 6px 8px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
  font-size: 14px;
  line-height: 1.55;
}

.med-bible-verse {
  margin: 0 0 6px;
}

.med-bible-vno {
  display: inline-block;
  min-width: 1.4em;
  margin-right: 4px;
  font-weight: 700;
  color: #888;
  font-size: 12px;
  vertical-align: top;
}

.med-bible-loading,
.med-bible-error {
  margin-top: 6px;
  padding: 12px 8px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.med-bible-error {
  color: #b00;
}

.med-bible-chapter-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-top: 6px;
  margin-top: 2px;
  border-top: 1px solid #e8e8e8;
}

.med-bible-chapter-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #5c4200;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.med-bible-chapter-nav-btn:hover:not(:disabled) {
  background: #fff6d6;
  border-color: #d4a012;
  color: #3d2d00;
}

.med-bible-chapter-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.med-bible-tri {
  display: block;
  flex-shrink: 0;
}

html.dark .med-bible-version {
  color: var(--accent);
}

html.dark .med-bible-inner {
  border-color: var(--line);
  background: var(--bg);
}

html.dark .med-bible-search,
html.dark .med-bible-select {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

html.dark .med-bible-results,
html.dark .med-bible-verses {
  border-color: var(--line);
  background: var(--surface);
}

html.dark .med-bible-hit:hover {
  background: var(--accent-soft);
}

html.dark .med-bible-hit-ref {
  color: var(--accent);
}

html.dark .med-bible-hit-txt {
  color: var(--muted);
}

html.dark .med-bible-chapter-nav {
  border-top-color: var(--line);
}

html.dark .med-bible-chapter-nav-btn {
  border-color: var(--line);
  background: var(--surface);
  color: var(--accent);
}
