/* ── VERSE SELECTION BAR ── */
.verse-selection-bar {
  position: sticky;
  bottom: 0;
  left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--gold);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  z-index: 50;
  animation: slideUp 0.2s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.verse-selection-bar button {
  background: var(--gold);
  color: var(--parchment);
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.verse-selection-bar button:hover { opacity: 0.85; }
.verse-selection-bar .sel-label {
  flex: 1;
  color: var(--ink-light);
  font-family: Arial, sans-serif;
}

/* ── SELECTION TOOLTIP ── */
.selection-tooltip {
  position: fixed;
  z-index: 99999;
  background: var(--gold);
  color: #1a1000;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  white-space: nowrap;
  transform: translateX(-50%);
  transition: opacity 0.15s;
  pointer-events: all !important;
  user-select: none;
}
.selection-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gold);
}

/* hover hint on selectable text areas */
#scriptureCard, #commentaryModalBody {
  cursor: text;
}
#commentaryModalBody {
  border-radius: 4px;
  transition: background 0.2s;
}
#commentaryModalBody:hover {
  background: rgba(184,134,11,0.04);
}
.commentary-select-hint {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  opacity: 0.9;
  margin-bottom: 14px;
  text-align: center;
  background: rgba(184,134,11,0.12);
  padding: 6px 12px;
  border-radius: 6px;
}

/* word hover hint in scripture */
.word:hover {
  border-bottom: 1px dotted var(--gold);
  color: var(--gold-light);
}
