.progress-steps-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tracking-input-container{
    align-items: flex-start;
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 30px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tracking-number-input {
    width: 90%;
    background-color: #fff;
    color: #000000;
    max-width: 600px;
}

.track-input-container {
    width: 90%;
    max-width: 600px;
}

.confirm_track_do {
    margin-left: 5px;
}

.progress-steps-container::before {
    content: none;
}


.progress-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.progress-step:not(:last-child) {
    margin-bottom: 15px;
}

.progress-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.progress-title {
    font-weight: bolder;
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: -5px;
}

.progress-description {
    font-weight: lighter;
    font-size: 0.9em;
    color: #ccc;
}

.bold {
    font-weight: bold;
}

.progress-status-indicator {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 2px solid #ccc;
    font-size: 1em;
    color: #ccc;
    content: '';
    margin-right: 15px;
}

.progress-step.active .progress-title,
.progress-step.active .progress-description {
    color: #D33341;
}

.progress-step.active .progress-status-indicator {
    background-color: #D33341;
    border-color: #D33341;
}

.progress-step.completed .progress-title,
.progress-step.completed .progress-description {
    color: #333;
}

.progress-step.completed .progress-status-indicator {
    background-color: #333;
    border-color: #333;
    content: '';
}
