/* Ayet Referansları için Temel Stiller */
.scripture-ref {
    border-bottom: 1px dotted currentColor;
    cursor: help;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.scripture-ref:hover {
    opacity: 1;
}

/* Tooltip Temel Yapı */
.scripture-tooltip {
    position: fixed;
    z-index: 99999;
    
    /* Varsayılan Renkler (Admin panelinden ezilecek) */
    background-color: #fff; 
    color: #333;
    
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 15px 20px;
    line-height: 1.6;
    pointer-events: none;
    
    /* Açılış Efekti (Eski usül net geçiş) */
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    
    /* GENİŞLİK AYARI: Eski haline (650px) getirildi */
    width: auto;
    max-width: 650px; 
    min-width: 250px;
    
    /* Yükseklik Ayarı: Daha esnek */
    height: auto;
    max-height: 80vh; 
    overflow-y: auto; 
}

.scripture-tooltip h4 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 8px;
}

/* Scrollbar Güzelleştirme (Sadece gerekirse çıkar) */
.scripture-tooltip::-webkit-scrollbar {
    width: 8px;
}
.scripture-tooltip::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05); 
}
.scripture-tooltip::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
}