body {
    font-family: 'Manrope', sans-serif;
    background-color: #CBDCEB;
}

.font-arabic {
    font-family: 'Almarai', sans-serif !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #CBDCEB;
}

::-webkit-scrollbar-thumb {
    background: #133E87;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #608BC1;
}

html {
    scroll-behavior: smooth;
}

/* Utility for RTL direction handling in Tailwind CDN if not fully configured */
[dir="rtl"] .text-right-rtl {
    text-align: left;
}

[dir="rtl"] .text-left-rtl {
    text-align: right;
}

/* Loader Transitions */
.loader-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Logo Filters */
.logo-white {
    filter: brightness(0) invert(1);
}

.logo-dark {
    filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(1637%) hue-rotate(205deg) brightness(94%) contrast(101%);
}

.logo-black {
    filter: brightness(0);
}