/**
 * Coptic Priests & Churches Manager - RTL Styles
 */

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

/* Grid System RTL */
body.rtl .cpcm-row {
    margin-right: -15px;
    margin-left: -15px;
}

body.rtl .cpcm-col {
    float: right;
}

/* Forms RTL */
body.rtl .cpcm-form-group label {
    text-align: right;
}

body.rtl .cpcm-form-control {
    text-align: right;
}

/* Tables RTL */
body.rtl .cpcm-table th,
body.rtl .cpcm-table td {
    text-align: right;
}

/* Lists RTL */
body.rtl .cpcm-list {
    padding-right: 0;
    padding-left: 20px;
}

/* Flex Utilities RTL */
body.rtl .d-flex {
    flex-direction: row; /* Default is row, but direction rtl handles order */
}

/* Spacing Utilities */
body.rtl .mr-1 { margin-left: 0.25rem !important; margin-right: 0 !important; }
body.rtl .ml-1 { margin-right: 0.25rem !important; margin-left: 0 !important; }
body.rtl .mr-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }
body.rtl .ml-2 { margin-right: 0.5rem !important; margin-left: 0 !important; }
body.rtl .mr-3 { margin-left: 1rem !important; margin-right: 0 !important; }
body.rtl .ml-3 { margin-right: 1rem !important; margin-left: 0 !important; }

/* Profile Card RTL */
body.rtl .cpcm-profile-card .profile-image {
    float: right;
    margin-left: 20px;
    margin-right: 0;
}

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

/* Search Box RTL */
body.rtl .cpcm-search-box input {
    padding-right: 15px;
    padding-left: 40px; /* Space for icon */
}

body.rtl .cpcm-search-box .search-icon {
    left: 15px;
    right: auto;
}
