/* RTL Support Styles */

/* RTL Base Direction */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

/* RTL Navbar */
[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: 1rem;
}

/* RTL Sidebar */
[dir="rtl"] .sidebar {
    border-right: none;
    border-left: 1px solid #dee2e6;
}

[dir="rtl"] .top-row {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem;
}

/* RTL Nav Menu */
[dir="rtl"] .nav-item {
    text-align: right;
}

[dir="rtl"] .nav-link {
    padding-left: 1rem;
    padding-right: 0.5rem;
}

[dir="rtl"] .bi {
    margin-right: 0;
}

/* RTL Forms */
[dir="rtl"] .form-label {
    text-align: right;
}

[dir="rtl"] .form-control {
    text-align: right;
}

[dir="rtl"] .input-group > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* RTL Alerts */
[dir="rtl"] .alert {
    text-align: right;
}

/* RTL Cards */
[dir="rtl"] .card-title,
[dir="rtl"] .card-text {
    text-align: right;
}

/* RTL Buttons */
[dir="rtl"] .btn .spinner-border {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* RTL Dropdowns */
[dir="rtl"] .dropdown-menu {
    text-align: right;
    right: auto;
    left: 0;
}

[dir="rtl"] .dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}

[dir="rtl"] .dropdown-toggle::after {
    margin-right: 0.255em;
    margin-left: 0;
}

[dir="rtl"] .dropdown-toggle {
  direction: rtl;
}

/* RTL Tables */
[dir="rtl"] table {
  text-align: right;
}

[dir="rtl"] th {
    text-align: right;
}

/* RTL Flex utilities */
[dir="rtl"] .float-end {
    float: left !important;
}

[dir="rtl"] .float-start {
    float: right !important;
}

[dir="rtl"] .me-1,
[dir="rtl"] .me-2,
[dir="rtl"] .me-3,
[dir="rtl"] .me-4,
[dir="rtl"] .me-5 {
    margin-left: inherit !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-1 { margin-right: 0.25rem !important; margin-left: 0 !important; }
[dir="rtl"] .ms-2 { margin-right: 0.5rem !important; margin-left: 0 !important; }
[dir="rtl"] .ms-3 { margin-right: 1rem !important; margin-left: 0 !important; }
[dir="rtl"] .ms-4 { margin-right: 1.5rem !important; margin-left: 0 !important; }
[dir="rtl"] .ms-5 { margin-right: 3rem !important; margin-left: 0 !important; }

[dir="rtl"] .me-1 { margin-left: 0.25rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-3 { margin-left: 1rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-4 { margin-left: 1.5rem !important; margin-right: 0 !important; }
[dir="rtl"] .me-5 { margin-left: 3rem !important; margin-right: 0 !important; }

/* Language Switcher */
.language-switcher {
    display: inline-block;
}

.language-switcher .dropdown-menu {
    min-width: 150px;
}

.language-switcher .flag-icon {
    font-size: 1.2em;
}

/* RTL specific for language switcher */
[dir="rtl"] .language-switcher .dropdown-toggle i {
    margin-left: 0.25rem;
    margin-right: 0;
}
/* RTL Form Check (checkbox / radio) */
[dir="rtl"] .form-check {
  padding-left: 0;
  padding-right: 1.75em;
}

[dir="rtl"] .form-check-input {
  float: right;
  margin-left: 0;
  margin-right: 0;
}

[dir="rtl"] .form-check-label {
  padding-right: 0.25em;
  padding-left: 0;
}
