/* Base styles */
body {
    font-family: 'Noto Naskh Arabic', serif;
    background-color: #f8fafc !important;
}

/* Quranic Text */
.quran-text {
    font-family: 'Noto Naskh Arabic', serif;
    /* Ensure intricate diacritics are legible */
    line-height: 2.2 !important; 
}

/* RTL Helpers */
.dir-ltr {
    direction: ltr;
}

/* Badges */
.badge-high {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.badge-medium {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.badge-low {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Button transitions */
.btn {
    transition: all 0.2s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn:active {
    transform: translateY(1px);
}