/**
 * RTL support for translation interface
 * 
 * © 2025 Danslav Slavenskoj, All rights reserved.
 * 
 */


/* RTL layout adjustments */
html[dir="rtl"] .language-bar {
    direction: rtl;
}

html[dir="rtl"] .script-selection {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .language-selector {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-selector label {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] #copyBtn {
    float: left;
}

html[dir="rtl"] textarea,
html[dir="rtl"] .output-area {
    direction: rtl;
    text-align: right;
}

/* Flip swap icon in RTL mode */
html[dir="rtl"] .swap-btn {
    transform: scaleX(-1);
}

/* Adjust the language options buttons for RTL */
html[dir="rtl"] .text-options-buttons {
    direction: rtl;
}

/* RTL support for the options container */
html[dir="rtl"] .language-specific-options {
    direction: rtl;
    text-align: right;
}
