﻿.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 20px;
    padding: 0 20px;
}

    .stepper-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #ddd;
        z-index: 0;
    }

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    top: 20px;
    font-weight: bold;
}

    .stepper-item .step-counter {
        width: 40px; /* Adjust size */
        height: 40px;
        border-radius: 50%;
        background-color: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 24px; /* Adjust icon size */
        transition: background-color 0.3s, color 0.3s;
    }

    .stepper-item.completed .step-counter,
    .stepper-item.active .step-counter {
        background-color: #0d6efd;
        color: white;
    }

    .stepper-item .step-counter .bx {
        font-size: 25px; /* Adjust icon size */
        line-height: 1;
    }

    .stepper-item .step-name {
        margin-top: 8px;
        font-size: 14px;
    }

    .stepper-item.completed + .stepper-item::before,
    .stepper-item.active + .stepper-item::before {
        background-color: #0d6efd;
    }
