/* RTL Specific Styles */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .navbar-nav {
    flex-direction: row-reverse;
}

body.rtl .dropdown-menu {
    right: 0;
    left: auto;
}

body.rtl .text-end {
    text-align: left !important;
}

body.rtl .text-start {
    text-align: right !important;
}

body.rtl .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

body.rtl .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

body.rtl .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

body.rtl .card {
    text-align: right;
}

body.rtl .navbar-brand i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* RTL Font adjustments for Arabic */
body.rtl {
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6 {
    font-weight: 600;
}

/* RTL specific animations */
body.rtl .card:hover {
    transform: translateY(-5px) translateX(5px);
}

@media (max-width: 768px) {
    body.rtl .navbar-collapse {
        text-align: right;
    }
}