
.status-container {
    position: relative;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 18px;
    width: 95%;
    height: 5%;
    /*border-top: 2px solid black;*/
    margin: 20px auto;
}

.navigation-buttons-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%; 
    max-width: 600px; 
    gap: 20px;
}

.navigation-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    color: #a6a6ae;
    border: none;
    font-size: 1em;
    font-weight: bold;
}

.navigation-button.disabled {
    color: #e0e0e0;
    cursor: not-allowed;
}

.timeline-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dot-label {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #a6a6ae;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 0.9em;
    border: 2px solid #a6a6ae;
    transition: all 0.3s ease;
}

.timeline-step.active .dot-label {
    background-color: #3a3a3a;
    border-color: #3a3a3a;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.8em;
    color: #a6a6ae;
    margin-top: 5px;
}

.timeline-line {
    flex-grow: 1;
    height: 2px;
    background-color: #a6a6ae;
    transform: translateY(-10px);
    margin: 0 -15px;
}
.previous-step{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    height: 100%;
}
.previous-step *{
    cursor: pointer;
}