/* Tooltopy dla cytatów biblijnych */
.bible-ref {
  position: relative;
  color: #2563eb;
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: help;
  font-weight: 500;
}

.bible-ref:hover {
  color: #1d4ed8;
}

.bible-tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 16px;
  
  min-width: 300px;
  max-width: 500px;
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  
  z-index: 1000;
  pointer-events: none;
}

/* Domyślnie pokazuj na górze */
.bible-tooltip {
  bottom: 100%;
}

/* Ale jeśli element jest blisko góry ekranu, pokaż na dole */
.bible-ref.tooltip-below .bible-tooltip {
  bottom: auto;
  top: 100%;
  margin-top: 8px;
  margin-bottom: 0;
}

.bible-ref:hover .bible-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Sticky tooltip - zostaje po kliknięciu */
.bible-ref.sticky .bible-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Strzałka tooltipa - góra */
.bible-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: white;
}

.bible-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #e5e7eb;
  margin-top: 1px;
  z-index: -1;
}

/* Strzałka dla tooltipa na dole */
.bible-ref.tooltip-below .bible-tooltip::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: white;
}

.bible-ref.tooltip-below .bible-tooltip::before {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #e5e7eb;
  margin-top: 0;
  margin-bottom: 1px;
}

.tooltip-ref {
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.tooltip-version {
  margin-bottom: 10px;
}

.tooltip-version:last-child {
  margin-bottom: 0;
}

.version-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 4px;
}

.version-text {
  font-size: 14px;
  line-height: 1.6;
  color: #1f2937;
  font-style: italic;
}

.version-text.hebrew,
.version-text.greek {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Serif', 'Times New Roman', serif;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .bible-tooltip {
    background: #1f2937;
    border-color: #374151;
  }
  
  .bible-tooltip::after {
    border-top-color: #1f2937;
  }
  
  .bible-tooltip::before {
    border-top-color: #374151;
  }
  
  .bible-ref.tooltip-below .bible-tooltip::after {
    border-bottom-color: #1f2937;
  }
  
  .bible-ref.tooltip-below .bible-tooltip::before {
    border-bottom-color: #374151;
  }
  
  .tooltip-ref {
    color: #f3f4f6;
    border-bottom-color: #374151;
  }
  
  .version-label {
    color: #9ca3af;
  }
  
  .version-text {
    color: #e5e7eb;
  }
}
