/* 强制从左到右显示的CSS文件 - 最简版 */
/* 只控制文本方向，不影响对齐方式 */
html, body {
  direction: ltr !important;
}

body {
  direction: ltr !important;
}

/* 编辑器内容区域 */
.mce-content-body {
  direction: ltr !important;
}

/* 确保内联元素也是从左到右 */
input, textarea, button, select {
  direction: ltr !important;
}

/* 确保表格相关元素的方向 */
table {
  direction: ltr !important;
}

table td, table th {
  direction: ltr !important;
} 