.status-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.status-step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: -10px;
}
.status-step-container:first-child {
    margin-left: 0;
}
.status-step {
    position: relative;
    padding: 8px 20px 8px 30px;
    font-size: 12px;
    font-weight: 500;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    white-space: nowrap;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.status-step-container:first-child .status-step {
    padding-left: 20px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 0 50%);
    border-radius: 4px 0 0 4px;
}
.status-step-container:last-child .status-step {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 15px 50%);
    border-radius: 0 4px 4px 0;
}
.status-substeps {
    display: flex;
    gap: 5px;
    margin-top: 5px;
    padding: 0 10px;
}
.status-substep {
    padding: 3px 8px;
    background: #e9ecef;
    color: #6c757d;
    font-size: 10px;
    border-radius: 3px;
    cursor: default;
    user-select: none;
    white-space: nowrap;
}
.status-step-container.has-substeps {
    min-width: fit-content;
    padding-right: 15px;
}
