/**
 * Trial Leads Manager - Frontend Styles (RTL)
 * Version: 1.0.0
 */

/* Import base styles */
@import url('frontend.css');

/* RTL Overrides */
.tlm-form-wrapper[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Form Fields RTL */
.tlm-form-wrapper[dir="rtl"] .tlm-form-field label .required {
    margin-left: 0;
    margin-right: 3px;
}

/* Select Dropdown RTL */
.tlm-form-wrapper[dir="rtl"] select.tlm-input {
    background-position: left 15px center;
    padding-right: 15px;
    padding-left: 40px;
}

/* Loading Animation RTL */
.tlm-form-wrapper[dir="rtl"] .tlm-btn-loader:after {
    margin-left: 0;
    margin-right: 8px;
}

/* Additional RTL specific styles */
.tlm-form-wrapper[dir="rtl"] .tlm-input {
    text-align: right;
}

.tlm-form-wrapper[dir="rtl"] .tlm-form-header {
    text-align: center;
}

/* Error messages RTL */
.tlm-form-wrapper[dir="rtl"] .tlm-error {
    text-align: right;
}
