.stepper {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    margin-left: 10px;
    width: 100%;
    max-width: 98%;
    box-sizing: border-box;
}

.stepper .step.upcoming:hover {
    background-color: #d85a1f;
    color: white
}

.stepper .step.completed:hover {
    background-color: green ;
    opacity: 0.8;
}

.step {
    flex-grow: 1;
    background-color: #ef6925;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: -2px;
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 0;
    cursor: pointer;
}

.step.active {
    background-color: #ef6925;
    color: white;
    padding: 14px 0;

}

.step.completed {
    background-color: green;
    color: white;
}

.step:last-child {
    margin-right: 0;
}

.step .label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.step .check-icon {
    font-size: 14px;
    color: white;
    display: inline-block;
}

.step.hidden {
    display: none;
}



