﻿/* لضبط اتجاه التابس من اليمين لليسار */
.wizard-navigation .nav-tabs {
    direction: rtl;
    float: none;
    text-align: right;
}

    .wizard-navigation .nav-tabs > li {
        float: right !important;
    }

/* لضبط أسهم التنقل بين الخطوات */
.btn-next i.ti-arrow-right:before {
    content: "\e649"; /* سهم لليسار */
    transform: rotate(180deg);
}

.btn-previous i.ti-arrow-left:before {
    content: "\e64a"; /* سهم لليمين */
    transform: rotate(180deg);
}

/* ضبط المحاذاة العامة للـ Wizard */
.wizard-container .wizard-card {
    text-align: right;
}
.wizard-navigation .nav-pills {
    direction: rtl !important;
    display: flex !important;
    justify-content: space-between !important;
}

    .wizard-navigation .nav-pills > li {
        float: none !important; /* إزالة ال float */
    }
