/**
 * Bible Reference System Styles
 * Updated with darker text and logo support
 */

/* Bible reference styling */
.bible-reference {
  color: #0066cc;
  text-decoration: underline;
  cursor: pointer;
  border-bottom: 1px dotted #0066cc;
  transition: background-color 0.2s;
}

.bible-reference:hover {
  background-color: rgba(0, 102, 204, 0.1);
}

.bible-reference.active {
  background-color: rgba(0, 102, 204, 0.15);
  font-weight: bold;
}

/* Popup styling */
.bible-verse-popup {
  position: absolute;
  z-index: 9999;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  width: 90%;
  max-width: 450px;
  max-height: 400px;
  overflow: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Popup header */
.bible-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #eee;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* Logo container */
.bible-popup-logo {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

/* Translation selector */
.bible-translation-selector {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}

/* Close button */
.bible-popup-close {
  background: transparent;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #777;
  cursor: pointer;
  padding: 0 5px;
}

.bible-popup-close:hover {
  color: #333;
}

/* Verse content area */
.bible-verse-content {
  padding: 15px;
}

/* Reference header */
.bible-reference-header {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #222; /* Darker header color */
}

/* Chapter header */
.bible-chapter-header {
  margin: 15px 0 10px 0;
  font-size: 16px;
  font-weight: bold;
  color: #333; /* Darker chapter header color */
}

/* Verses */
.bible-verses {
  margin-bottom: 15px;
}

.bible-verse {
  margin: 0 0 8px 0;
  line-height: 1.6;
}

/* Verse numbers */
.bible-verse-num {
  font-weight: bold;
  color: #555; /* Darker verse number color */
  font-size: 12px;
  vertical-align: super;
  margin-right: 2px;
}

/* Verse text */
.bible-verse-text {
  color: #222; /* Much darker verse text color for better readability */
  font-weight: 500; /* Slightly bolder text for better readability */
}

/* Loading indicator */
.bible-verse-loading {
  text-align: center;
  padding: 10px;
  font-style: italic;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bible-verse-popup {
    width: 95%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .bible-verse-popup {
    width: 95%;
    max-height: 350px;
    font-size: 15px;
  }
  
  .bible-reference-header {
    font-size: 16px;
  }
}