body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

h1 {
    text-align: center;
    color: #005eb8;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.order-detail {
    margin-bottom: 20px;
}

.order-detail p {
    font-size: 1.2em;
}

a {
    color: #005eb8;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.progress-container {
    position: relative;
    height: 20px;
    background-color: #e9e9e9;
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background-color: #005eb8;
    transition: width 0.4s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9em;
    color: #333;
    flex-wrap: wrap;
}

.progress-labels span {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 5px;
}

.progress-labels .active {
    font-weight: bold;
    color: #005eb8;
}

@media (min-width: 480px) {
    .progress-labels span {
        flex: 1;
        margin-bottom: 0;
    }
}