/* Bible Verse Tooltip Styles */

.bible-reference {
    position: relative;
    color: #0066cc;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    display: inline;
    padding: 0 2px;
}

.bible-reference:hover {
    color: #004499;
}

.bible-tooltip {
    position: absolute;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 12px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
	max-height: 400px;        /* Maximum height before scrolling starts */
	overflow-y: auto;         /* Enable vertical scrolling */
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    display: none;
    left: 0;
    top: 100%;
    margin-top: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bible-tooltip.active {
    display: block;
}

/* Arrow pointing up to the reference */
.bible-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-bottom-color: #cccccc;
}

.bible-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 21px;
    border: 5px solid transparent;
    border-bottom-color: #ffffff;
}

.bible-tooltip-version {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bible-tooltip {
        max-width: 90vw;
        min-width: 250px;
    }
}
