/* RTL (Arapça) desteği için CSS */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* RTL Sidebar Ana Düzenlemeler */
[dir="rtl"] .sidebar {
    right: 0 !important;
    left: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 250px !important;
    z-index: 1000 !important;
}

[dir="rtl"] .sidebar.open {
    transform: translateX(0) !important;
}

[dir="rtl"] .content {
    margin-left: 0 !important;
    margin-right: 250px !important;
    transition: margin-right 0.3s ease !important;
}

[dir="rtl"] body.ls-closed .content {
    margin-right: 0 !important;
}

[dir="rtl"] body.ls-closed .sidebar {
    transform: translateX(100%) !important;
}

[dir="rtl"] body.overlay-open .sidebar {
    transform: translateX(0) !important;
}

/* RTL Overlay Düzenlemesi */
[dir="rtl"] .overlay {
    right: 0 !important;
    left: auto !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 999 !important;
    display: none !important;
}

[dir="rtl"] body.overlay-open .overlay {
    display: block !important;
}

/* RTL Navbar Düzenlemeleri */
[dir="rtl"] .navbar-header {
    float: right !important;
}

[dir="rtl"] .navbar-nav {
    float: left !important;
}

[dir="rtl"] .navbar-nav > li {
    float: right !important;
}

[dir="rtl"] .navbar-toggle {
    float: right !important;
    margin-right: 0 !important;
    margin-left: 15px !important;
}

/* RTL Bars Butonu */
[dir="rtl"] .bars {
    float: right !important;
    margin-right: 0 !important;
    margin-left: 15px !important;
    cursor: pointer !important;
}

/* RTL Sidebar Menü Düzenlemeleri */
[dir="rtl"] .menu .list li a {
    text-align: right;
    padding: 15px 20px 15px 15px;
}

[dir="rtl"] .menu .list li a i {
    margin-right: 0 !important;
    margin-left: 10px !important;
    float: right;
}

[dir="rtl"] .menu .list li a span {
    margin-right: 0 !important;
    margin-left: 10px !important;
}

/* RTL Sidebar Header */
[dir="rtl"] .sidebar .user-info {
    text-align: center;
}

[dir="rtl"] .sidebar .legal {
    text-align: center;
}

/* MOBİL VERSİYONDA SIDEBAR'ı TAMAMEN GİZLE */
@media (max-width: 768px) {
    /* Tüm diller için mobilde sidebar'ı gizle */
    .sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(-100%) !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
    
    /* RTL için de aynı şekilde gizle */
    [dir="rtl"] .sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(100%) !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        right: -9999px !important;
        top: -9999px !important;
    }
    
    /* Mobilde content margin'larını sıfırla */
    .content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* RTL için de content margin'larını sıfırla */
    [dir="rtl"] .content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    /* Mobilde overlay'i gizle */
    .overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* RTL için de overlay'i gizle */
    [dir="rtl"] .overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Mobilde bars butonunu gizle */
    .bars {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* RTL için de bars butonunu gizle */
    [dir="rtl"] .bars {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Mobilde navbar toggle butonunu gizle */
    .navbar-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* RTL için de navbar toggle butonunu gizle */
    [dir="rtl"] .navbar-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Mobilde body class'larını temizle */
    body.overlay-open,
    body.ls-closed,
    body.ls-closed-rtl {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Mobilde navbar'ı tam genişlik yap */
    .navbar {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 15px !important;
    }
    
    /* RTL için de navbar'ı tam genişlik yap */
    [dir="rtl"] .navbar {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 15px !important;
    }
    
    /* Mobilde container'ı tam genişlik yap */
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    /* RTL için de container'ı tam genişlik yap */
    [dir="rtl"] .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

/* Tablet versiyonu için de sidebar'ı gizle */
@media (max-width: 1024px) {
    .sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(-100%) !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
    
    [dir="rtl"] .sidebar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(100%) !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        right: -9999px !important;
        top: -9999px !important;
    }
    
    .content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    [dir="rtl"] .content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    .bars {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    [dir="rtl"] .bars {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    [dir="rtl"] .overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* RTL Responsive Düzenlemeler (Sadece desktop için) */
@media (min-width: 1025px) {
    [dir="rtl"] .content {
        margin-right: 0 !important;
    }
    
    [dir="rtl"] .sidebar {
        transform: translateX(100%) !important;
    }
    
    [dir="rtl"] body.overlay-open .sidebar {
        transform: translateX(0) !important;
    }
    
    [dir="rtl"] body.ls-closed-rtl .sidebar {
        transform: translateX(100%) !important;
    }
}

/* RTL Sidebar Toggle Animasyonları (Sadece desktop için) */
@media (min-width: 1025px) {
    [dir="rtl"] .sidebar {
        transition: transform 0.3s ease, right 0.3s ease !important;
    }
    
    [dir="rtl"] body.overlay-open .sidebar {
        transform: translateX(0) !important;
    }
    
    [dir="rtl"] body.ls-closed-rtl .sidebar {
        transform: translateX(100%) !important;
    }
}

/* RTL Sidebar Menü Öğeleri */
[dir="rtl"] .menu .list .header {
    text-align: right;
    padding: 10px 20px 10px 15px;
}

[dir="rtl"] .menu .list .menu-toggle {
    float: left;
}

[dir="rtl"] .menu .list .menu-toggle:after {
    content: '\f104';
    font-family: 'FontAwesome';
    position: absolute;
    left: 15px;
    right: auto;
}

/* RTL Sidebar Menü Alt Öğeleri */
[dir="rtl"] .menu .list ul {
    padding-right: 0;
    padding-left: 20px;
}

[dir="rtl"] .menu .list ul li a {
    padding: 10px 20px 10px 15px;
    border-left: 2px solid transparent;
    border-right: none;
}

[dir="rtl"] .menu .list ul li.active a {
    border-left-color: #fff;
    border-right: none;
}

/* RTL Sidebar Menü Toggle Durumları */
[dir="rtl"] .menu-toggle.toggled:after {
    content: '\f107';
}

[dir="rtl"] .menu-toggle.toggled + ul {
    display: block;
}

[dir="rtl"] .menu-toggle:not(.toggled) + ul {
    display: none;
}

/* RTL Sidebar Menü Hover Efektleri */
[dir="rtl"] .menu .list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

[dir="rtl"] .menu .list li.active a {
    border-left: 3px solid #fff;
    border-right: none;
    background-color: rgba(255, 255, 255, 0.1);
}

/* RTL Sidebar Menü Toggle Butonları */
[dir="rtl"] .menu-toggle {
    position: relative;
    cursor: pointer;
}

[dir="rtl"] .menu-toggle:before {
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background-color 0.3s ease;
}

[dir="rtl"] .menu-toggle.toggled:before {
    background: #fff;
}

/* RTL Sidebar Menü Toggle Hover */
[dir="rtl"] .menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

[dir="rtl"] .menu-toggle:hover:before {
    background: rgba(255, 255, 255, 0.5);
}

/* RTL Sidebar Menü Toggle Active */
[dir="rtl"] .menu-toggle.active {
    background-color: rgba(255, 255, 255, 0.2);
}

[dir="rtl"] .menu-toggle.active:before {
    background: #fff;
}

/* RTL Sidebar Menü Toggle Focus */
[dir="rtl"] .menu-toggle:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

/* RTL Sidebar Menü Toggle Disabled */
[dir="rtl"] .menu-toggle:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* RTL Sidebar Menü Toggle Loading */
[dir="rtl"] .menu-toggle.loading {
    pointer-events: none;
}

/* RTL Sidebar Menü Toggle Success */
[dir="rtl"] .menu-toggle.success {
    background-color: rgba(76, 175, 80, 0.2);
}

/* RTL Sidebar Menü Toggle Error */
[dir="rtl"] .menu-toggle.error {
    background-color: rgba(244, 67, 54, 0.2);
}

/* RTL Sidebar Menü Toggle Warning */
[dir="rtl"] .menu-toggle.warning {
    background-color: rgba(255, 193, 7, 0.2);
}

/* RTL Sidebar Menü Toggle Info */
[dir="rtl"] .menu-toggle.info {
    background-color: rgba(33, 150, 243, 0.2);
}

/* RTL Sidebar Menü Toggle Primary */
[dir="rtl"] .menu-toggle.primary {
    background-color: rgba(156, 39, 176, 0.2);
}

/* RTL Sidebar Menü Toggle Secondary */
[dir="rtl"] .menu-toggle.secondary {
    background-color: rgba(158, 158, 158, 0.2);
}

/* RTL Sidebar Menü Toggle Dark */
[dir="rtl"] .menu-toggle.dark {
    background-color: rgba(33, 33, 33, 0.2);
}

/* RTL Sidebar Menü Toggle Light */
[dir="rtl"] .menu-toggle.light {
    background-color: rgba(245, 245, 245, 0.2);
}

/* RTL Sidebar Menü Toggle Custom */
[dir="rtl"] .menu-toggle.custom {
    background-color: var(--custom-color, rgba(0, 0, 0, 0.2));
}

/* RTL Sidebar Menü Toggle Gradient */
[dir="rtl"] .menu-toggle.gradient {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

/* RTL Sidebar Menü Toggle Shadow */
[dir="rtl"] .menu-toggle.shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* RTL Sidebar Menü Toggle Border */
[dir="rtl"] .menu-toggle.border {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* RTL Sidebar Menü Toggle Rounded */
[dir="rtl"] .menu-toggle.rounded {
    border-radius: 4px;
}

/* RTL Sidebar Menü Toggle Circle */
[dir="rtl"] .menu-toggle.circle {
    border-radius: 50%;
}

/* RTL Sidebar Menü Toggle Pill */
[dir="rtl"] .menu-toggle.pill {
    border-radius: 20px;
}

/* RTL Sidebar Menü Toggle Outline */
[dir="rtl"] .menu-toggle.outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* RTL Sidebar Menü Toggle Outline Hover */
[dir="rtl"] .menu-toggle.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* RTL Sidebar Menü Toggle Outline Active */
[dir="rtl"] .menu-toggle.outline.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* RTL Sidebar Menü Toggle Outline Focus */
[dir="rtl"] .menu-toggle.outline:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

/* RTL Sidebar Menü Toggle Outline Disabled */
[dir="rtl"] .menu-toggle.outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* RTL Sidebar Menü Toggle Outline Loading */
[dir="rtl"] .menu-toggle.outline.loading {
    pointer-events: none;
}

/* RTL Sidebar Menü Toggle Outline Success */
[dir="rtl"] .menu-toggle.outline.success {
    border-color: rgba(76, 175, 80, 0.5);
    color: rgba(76, 175, 80, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Error */
[dir="rtl"] .menu-toggle.outline.error {
    border-color: rgba(244, 67, 54, 0.5);
    color: rgba(244, 67, 54, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Warning */
[dir="rtl"] .menu-toggle.outline.warning {
    border-color: rgba(255, 193, 7, 0.5);
    color: rgba(255, 193, 7, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Info */
[dir="rtl"] .menu-toggle.outline.info {
    border-color: rgba(33, 150, 243, 0.5);
    color: rgba(33, 150, 243, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Primary */
[dir="rtl"] .menu-toggle.outline.primary {
    border-color: rgba(156, 39, 176, 0.5);
    color: rgba(156, 39, 176, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Secondary */
[dir="rtl"] .menu-toggle.outline.secondary {
    border-color: rgba(158, 158, 158, 0.5);
    color: rgba(158, 158, 158, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Dark */
[dir="rtl"] .menu-toggle.outline.dark {
    border-color: rgba(33, 33, 33, 0.5);
    color: rgba(33, 33, 33, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Light */
[dir="rtl"] .menu-toggle.outline.light {
    border-color: rgba(245, 245, 245, 0.5);
    color: rgba(245, 245, 245, 0.8);
}

/* RTL Sidebar Menü Toggle Outline Custom */
[dir="rtl"] .menu-toggle.outline.custom {
    border-color: var(--custom-color, rgba(0, 0, 0, 0.5));
    color: var(--custom-color, rgba(0, 0, 0, 0.8));
}

/* RTL Sidebar Menü Toggle Outline Gradient */
[dir="rtl"] .menu-toggle.outline.gradient {
    border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5)) 1;
}

/* RTL Sidebar Menü Toggle Outline Shadow */
[dir="rtl"] .menu-toggle.outline.shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* RTL Sidebar Menü Toggle Outline Border */
[dir="rtl"] .menu-toggle.outline.border {
    border-width: 2px;
}

/* RTL Sidebar Menü Toggle Outline Rounded */
[dir="rtl"] .menu-toggle.outline.rounded {
    border-radius: 4px;
}

/* RTL Sidebar Menü Toggle Outline Circle */
[dir="rtl"] .menu-toggle.outline.circle {
    border-radius: 50%;
}

/* RTL Sidebar Menü Toggle Outline Pill */
[dir="rtl"] .menu-toggle.outline.pill {
    border-radius: 20px;
}

/* RTL Sidebar Menü Toggle Outline Large */
[dir="rtl"] .menu-toggle.outline.large {
    padding: 12px 24px;
    font-size: 16px;
}

/* RTL Sidebar Menü Toggle Outline Small */
[dir="rtl"] .menu-toggle.outline.small {
    padding: 6px 12px;
    font-size: 12px;
}

/* RTL Sidebar Menü Toggle Outline XSmall */
[dir="rtl"] .menu-toggle.outline.xsmall {
    padding: 4px 8px;
    font-size: 10px;
}

/* RTL Sidebar Menü Toggle Outline Block */
[dir="rtl"] .menu-toggle.outline.block {
    display: block;
    width: 100%;
}

/* RTL Sidebar Menü Toggle Outline Inline */
[dir="rtl"] .menu-toggle.outline.inline {
    display: inline-block;
}

/* RTL Sidebar Menü Toggle Outline Inline-Block */
[dir="rtl"] .menu-toggle.outline.inline-block {
    display: inline-block;
}

/* RTL Sidebar Menü Toggle Outline Flex */
[dir="rtl"] .menu-toggle.outline.flex {
    display: flex;
}

/* RTL Sidebar Menü Toggle Outline Inline-Flex */
[dir="rtl"] .menu-toggle.outline.inline-flex {
    display: inline-flex;
}

/* RTL Sidebar Menü Toggle Outline Grid */
[dir="rtl"] .menu-toggle.outline.grid {
    display: grid;
}

/* RTL Sidebar Menü Toggle Outline Inline-Grid */
[dir="rtl"] .menu-toggle.outline.inline-grid {
    display: inline-grid;
}

/* RTL Sidebar Menü Toggle Outline Table */
[dir="rtl"] .menu-toggle.outline.table {
    display: table;
}

/* RTL Sidebar Menü Toggle Outline Table-Cell */
[dir="rtl"] .menu-toggle.outline.table-cell {
    display: table-cell;
}

/* RTL Sidebar Menü Toggle Outline Table-Row */
[dir="rtl"] .menu-toggle.outline.table-row {
    display: table-row;
}

/* RTL Sidebar Menü Toggle Outline Table-Column */
[dir="rtl"] .menu-toggle.outline.table-column {
    display: table-column;
}

/* RTL Sidebar Menü Toggle Outline Table-Column-Group */
[dir="rtl"] .menu-toggle.outline.table-column-group {
    display: table-column-group;
}

/* RTL Sidebar Menü Toggle Outline Table-Footer-Group */
[dir="rtl"] .menu-toggle.outline.table-footer-group {
    display: table-footer-group;
}

/* RTL Sidebar Menü Toggle Outline Table-Header-Group */
[dir="rtl"] .menu-toggle.outline.table-header-group {
    display: table-header-group;
}

/* RTL Sidebar Menü Toggle Outline Table-Row-Group */
[dir="rtl"] .menu-toggle.outline.table-row-group {
    display: table-row-group;
}

/* RTL Sidebar Menü Toggle Outline Table-Caption */
[dir="rtl"] .menu-toggle.outline.table-caption {
    display: table-caption;
}

/* RTL Sidebar Menü Toggle Outline Contents */
[dir="rtl"] .menu-toggle.outline.contents {
    display: contents;
}

/* RTL Sidebar Menü Toggle Outline List-Item */
[dir="rtl"] .menu-toggle.outline.list-item {
    display: list-item;
}

/* RTL Sidebar Menü Toggle Outline Run-In */
[dir="rtl"] .menu-toggle.outline.run-in {
    display: run-in;
}

/* RTL Sidebar Menü Toggle Outline Flow */
[dir="rtl"] .menu-toggle.outline.flow {
    display: flow;
}

/* RTL Sidebar Menü Toggle Outline Flow-Root */
[dir="rtl"] .menu-toggle.outline.flow-root {
    display: flow-root;
}

/* RTL Sidebar Menü Toggle Outline Ruby */
[dir="rtl"] .menu-toggle.outline.ruby {
    display: ruby;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Base */
[dir="rtl"] .menu-toggle.outline.ruby-base {
    display: ruby-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Text */
[dir="rtl"] .menu-toggle.outline.ruby-text {
    display: ruby-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Base-Container */
[dir="rtl"] .menu-toggle.outline.ruby-base-container {
    display: ruby-base-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Text-Container */
[dir="rtl"] .menu-toggle.outline.ruby-text-container {
    display: ruby-text-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-text-group {
    display: ruby-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Base-Group */
[dir="rtl"] .menu-toggle.outline.ruby-base-group {
    display: ruby-base-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation */
[dir="rtl"] .menu-toggle.outline.ruby-annotation {
    display: ruby-annotation;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container {
    display: ruby-annotation-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-group {
    display: ruby-annotation-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Base */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-base {
    display: ruby-annotation-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-text {
    display: ruby-annotation-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base {
    display: ruby-annotation-container-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-text {
    display: ruby-annotation-container-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-group {
    display: ruby-annotation-container-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-group {
    display: ruby-annotation-container-base-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-text-group {
    display: ruby-annotation-container-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text {
    display: ruby-annotation-container-base-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-group {
    display: ruby-annotation-container-base-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation {
    display: ruby-annotation-container-base-text-annotation;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container {
    display: ruby-annotation-container-base-text-annotation-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base {
    display: ruby-annotation-container-base-text-annotation-container-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-text {
    display: ruby-annotation-container-base-text-annotation-container-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-group {
    display: ruby-annotation-container-base-text-annotation-container-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-group {
    display: ruby-annotation-container-base-text-annotation-container-base-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-text-group {
    display: ruby-annotation-container-base-text-annotation-container-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Group */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-group {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-group;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation */
[dir="rtl"] .menu-toggle.outline.ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation {
    display: ruby-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation-container-base-text-annotation;
}

/* RTL Sidebar Menü Toggle Outline Ruby-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotation-Container-Base-Text-Annotati
