.bible-ref-tooltip {
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}

.bible-ref-tooltip:hover {
  color: #00bab3;
}

.bible-tooltip {
  position: absolute;
  background: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}

/* Callout pointer style */
.bible-tooltip::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 40px;
  border-width: 12px 12px 0 12px;
  border-style: solid;
  border-color: #f9f9f9 transparent transparent transparent;
  display: block;
}

.clipboard-tooltip {
  background: #999;
  color: white;
  font-weight: 600;
  text-align: center;
}