/*
Theme Name: The Directory
Description: RTL (Right-to-Left) stylesheet for Arabic language support
Note: Most RTL handling is now done via CSS logical properties in main stylesheets.
This file only contains essential overrides that cannot be handled by logical properties.
*/

/* RTL Direction - applies to entire document */
body {
  direction: rtl;
}

/* Keep star ratings LTR (visual consistency) */
.stars,
.star-rating,
.star-rating-input {
  direction: ltr;
}

/* Lists - override browser default RTL padding */
ul, ol {
  padding-inline-start: 1.75rem;
  padding-inline-end: 0;
}
