/**
 * ============================================================================
 * RIGHT-TO-LEFT DIRECTION - RTL LANGUAGE SUPPORT
 * ============================================================================
 * Sets text direction to RTL for Arabic language support.
 * This file is conditionally loaded only when Arabic is the active language.
 * 
 * CRITICAL FUNCTIONALITY:
 * - Reverses text flow from right to left
 * - Affects all layout and positioning
 * - Works with logical CSS properties (padding-inline, margin-inline, etc.)
 * ============================================================================
 */

/* ========================================================================== */
/* RTL DIRECTION - APPLY TO ENTIRE DOCUMENT */
/* ========================================================================== */
html,
body {
  direction: rtl; /* Right-to-left text direction for Arabic */
}
