/**
 * RTL (Right-to-Left) Stylesheet for mizbar Theme
 */

/* RTL is the default direction for this theme, but this file ensures proper RTL support */

body {
    direction: rtl;
    text-align: right;
}

/* Header */
.header-container {
    flex-direction: row;
}

.menu-toggle {
    order: -1;
}

/* Navigation arrows and icons */
.read-more::after {
    content: '←';
    margin-right: 5px;
}

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

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

/* Lists */
.entry-content ul,
.entry-content ol {
    padding-right: 25px;
    padding-left: 0;
}

/* Blockquotes */
.entry-content blockquote {
    border-right: 4px solid var(--primary-color);
    border-left: none;
    padding-right: 20px;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

/* Search form */
.search-submit {
    right: auto;
    left: 5px;
}

/* Back to top button */
.back-to-top {
    right: 30px !important;
    left: auto !important;
}

/* Mobile menu */
@media (max-width: 768px) {
    .main-navigation {
        right: auto;
        left: -100%;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation.active {
        right: auto;
        left: 0;
    }
}

/* Ensure proper text alignment */
h1, h2, h3, h4, h5, h6,
p, li, td, th {
    text-align: right;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea {
    text-align: right;
}
