/**
 * RTL (Right-to-Left) styles for BNBInfinity
 * Used for languages like Arabic
 */

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

/* Navigation */
body.rtl .navbar-links {
    flex-direction: row-reverse;
}

body.rtl .navbar-logo {
    margin-right: 0;
    margin-left: 2rem;
}

/* Hero section */
body.rtl .screen-block {
    float: right;
}

body.rtl .screen-block.right-screen {
    float: left;
}

/* Calculator */
body.rtl .container-counter {
    flex-direction: row-reverse;
}

body.rtl .list-info {
    flex-direction: row-reverse;
}

/* Dashboard */
body.rtl .list-dashboard {
    flex-direction: row-reverse;
}

body.rtl .list-footer {
    flex-direction: row-reverse;
}

body.rtl .btn-copy {
    margin-right: 10px;
    margin-left: 0;
}

/* Transactions */
body.rtl .transaction-item {
    flex-direction: row-reverse;
}

body.rtl .transaction-type {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .transaction-arrow {
    transform: scaleX(-1);
}

/* Footer */
body.rtl .footer-links {
    flex-direction: row-reverse;
}

body.rtl .social-links {
    flex-direction: row-reverse;
}