MUI Internationalization & RTL Support 1. RTL Setup Set the document direction and configure the MUI theme: Install the Emotion RTL plugin for automatic style flipping: Wrap the app with the RTL-aware cache provider: 2. Emotion RTL Cache The RTL cache intercepts all Emotion-generated styles and flips directional properties ( becomes , becomes , etc.). Key points: - The must be unique per cache instance (e.g. vs ). - adds vendor prefixes and should always be included. - must come after in the array. 3. Dynamic Direction Switching Toggle between LTR and RTL at runtime using React state: Importa…