/*
Theme Name: My Custom Theme
Description: RTL stylesheet for right-to-left languages (Persian, Arabic)
*/

body {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}

/* Float & Margin mirrors */
.alignright {
  float: right;
  margin-left: 1.5em;
  margin-right: 0;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-left: 0;
}

/* Comment reply nesting indent for RTL */
.comment-list .children {
  margin-right: 32px;
  margin-left: 0;
  border-right: 2px solid #E2E8F0;
  border-left: none;
  padding-right: 16px;
  padding-left: 0;
}

/* Post navigation direction */
.post-navigation .nav-previous {
  text-align: right;
}

.post-navigation .nav-next {
  text-align: left;
}
