/* Ayet Referansları için Temel Stiller */
.scripture-ref {
    border-bottom: 1px dotted #0066cc;
    cursor: help;
    text-decoration: none;
}

/* Tooltip Stilleri - Esnek Yükseklik Tasarımı */
.scripture-tooltip {
    position: fixed;
    z-index: 99999;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
    
    /* Genişlik Ayarları */
    width: auto;
    max-width: 650px;
    
    /* Yükseklik Ayarları */
    height: auto;
    max-height: 80vh; 
    overflow-y: auto; 
}

.scripture-tooltip h4 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: #005a9e;
}

.scripture-tooltip p {
    margin: 0;
    padding: 0;
}

.scripture-tooltip p strong {
    color: #d9534f;
    font-weight: bold;
}