.wizard-stepper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    min-height: 100px; /* اضافه شده */
}

.wizard-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: nowrap; /* اضافه شده */
}

.wizard-step {
    position: relative;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3; /* اضافه شده */
}


/* خط اتصال بین مراحل */
.wizard-steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dee2e6;
    z-index: 0;
}

/* دایره شماره مرحله */
.step-circle {
    width: 40px;
    height: 40px;
    margin: 10px auto;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #6c757d;
    line-height: 40px;
    font-weight: bold;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

/* عنوان مرحله */
.step-label {
    margin-top: 4px;
    font-size: 14px;
    color: #6c757d;
    z-index: 2;
}

/* مرحله فعال */
.wizard-step.active .step-circle {
    background-color: #6ecdc7;
    color: #fff;
}

.wizard-step.active .step-label {
    color: #6ecdc7;
}

/* مرحله کامل‌شده */
.wizard-step.completed .step-circle {
    background-color: #4bb9b2;
    color: #fff;
}

.wizard-step.completed .step-label {
    color: #4bb9b2;
}

/* رنگ خط اتصال برای مراحل کامل‌شده */
.wizard-steps.completed::before {
    background-color: #4bb9b2;
}

/* رنگ خط اتصال برای مرحله فعال */
.wizard-steps.active::before {
    background-color: #6ecdc7;
}
