/* SCRIPTURE TOOLTIPS - Clean card-based design with header strip */

/* HTML Tooltip Styling */
.scripture-tooltip {
    position: fixed;
    z-index: var(--z-tooltip);
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    min-width: 240px;
    max-width: 420px;
    animation: tooltipFadeIn 0.2s ease-out;
    pointer-events: none;
}

.scripture-tooltip::after {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: #e8f0f8;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}

.scripture-tooltip.tooltip-above::after {
    top: auto;
    bottom: -14px;
    border-bottom-color: transparent;
    border-top-color: white;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.scripture-tooltip .tooltip-header {
    background: #e8f0f8;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #d0dae6;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.scripture-tooltip .tooltip-body {
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-primary);
    font-weight: 400;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
