/**
 * ElemenTrans Auto-RTL Base Stylesheet
 *
 * This file provides the base stylesheet handle for auto-generated
 * RTL CSS. The comprehensive RTL rules are added inline by PHP
 * (class-compatibility.php::get_auto_rtl_css()) via wp_add_inline_style().
 *
 * This file is only loaded for themes that do NOT provide their own
 * rtl.css stylesheet. The inline CSS appended to this file covers:
 * - Text alignment flips
 * - Float flips
 * - Margin/padding left-right swaps
 * - Border-radius corner flips
 * - Flexbox direction reversal
 * - Transform scaleX for directional icons
 * - Form element RTL alignment
 * - Navigation menu RTL overrides
 * - Elementor widget RTL overrides
 * - WooCommerce RTL fixes
 * - General utility class flips
 *
 * @package ElemenTrans
 * @since   1.0.0
 */

/* Base RTL reset - prevents flash of LTR content before inline CSS loads */
body.elementrans-rtl {
	direction: rtl;
	text-align: right;
}
