.sidebar {
    width: 100%;
    padding: 20px;
    background-color: #F4F6FA;
    border-radius: 10px;
    box-shadow: 0px 2px 18px #00000029;;
}

.stepper {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.stepper li {
    display: flex;
    align-items: center;
    height: 100px;
    position: relative;
}

.stepper li .step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 2;
}

.stepper li .label {
    font-size: 16px;
    margin-left: 15px;
    font-weight: 500;
    padding-left: 23px;
    z-index: 2;
}

.stepper li.active .step {
    color: #fff;
}

.stepper li.completed .step {
    background-color: #43BDA7; /* Completed step color */
    color: #fff;
}

.stepper li.pending .step {
    background-color: #ccc; /* Pending step color */
    color: #fff;
}

.stepper li.active .label {
    font-weight: bold;
}

.stepper li:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    height: 20px;
    width: 2px;
    background-color: #ddd;
    z-index: 1;
}

.stepper li:last-child:before {
    display: none;
}

.stepper li:first-child.completed::before {
    top: 80%;
}

.stepper li.completed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    width: 4px;
    height: calc(100%);
    background-color: #43BDA7; /* Completed line color */
    transform: translateY(-50%);
    z-index: 1;
}

.stepper li:first-child.active::before {
    top: 80%;
}

.stepper li.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    width: 4px;
    height: calc(100%);
    background-color: #048AAF; /* Active line color */
    transform: translateY(-50%);
    z-index: 1;
}

.stepper li.pending:not(:last-child)::before {
    top: 20%;
}

.stepper li.active:nth-child(7)::before {
    top: 20%;
}

.stepper li.pending::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    width: 4px;
    height: calc(100%);
    background-color: silver; /* Pending line color */
    transform: translateY(-50%);
    z-index: 1;
}


.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    border: 1px solid #D4D4D4;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #048AAE;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.Imgavatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /* background: #048AAE; */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    display: none;
    z-index: 1000;
    margin-top: 4px;
}

.dropdown-menu.show {
    display: block;
    border: none;
}

.dropdown-item {
    padding: 10px 16px;
    display: block;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #F4F6FA;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 4px 0;
}

.dropdown-toggle::after {
    display:none !important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
