/* RTL Override for Woodmart Plus Plugin - Force LTR */
/* This file overrides RTL styles to force LTR layout */

/* Force LTR direction for all elements */
* {
    direction: ltr !important;
}

/* Body and HTML */
body, html {
    direction: ltr !important;
    text-align: left !important;
}

/* Override RTL text alignment */
.text_right {
    text-align: left !important;
}

/* Tables */
table, th, td {
    text-align: left !important;
    direction: ltr !important;
}

/* Forms */
input, textarea, select {
    text-align: left !important;
    direction: ltr !important;
}

/* Admin dashboard */
.wp-admin * {
    direction: ltr !important;
    text-align: left !important;
}

/* Woodmart Plus specific overrides */
.woodplus_options_pages {
    direction: ltr !important;
}

.woodplust_sidebar {
    direction: ltr !important;
}

/* Popup and modal content */
.popup-content, .modal-content {
    direction: ltr !important;
    text-align: left !important;
}

/* Dashboard elements */
.dashboard * {
    direction: ltr !important;
}

/* Force LTR for any RTL specific classes */
[dir="rtl"] {
    direction: ltr !important;
}

.rtl {
    direction: ltr !important;
}

/* Override any inline styles that might set RTL */
[style*="direction: rtl"] {
    direction: ltr !important;
}

[style*="text-align: right"] {
    text-align: left !important;
}
