/* Container */
.ui-progress {
    background: #009fff;
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-family: system-ui, sans-serif;
    margin: 8px 0 8px 0.9rem;
}

/* Header */
.ui-progress__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui-progress__title {
    font-weight: 600;
}

.ui-progress__meta {
    font-size: 12px;
    opacity: 0.9;
}

/* Progress bar */
.ui-progress__bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.ui-progress__fill {
    height: 100%;
    background: white;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Steps */
.ui-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
}

.ui-step {
    text-align: center;
    flex: 1;
}

/* Circle */
.ui-step__circle {
    width: 20px;
    height: 20px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Completed state */
.ui-step.is-completed .ui-step__circle {
    background: white;
    color: #009fff;
    border: none;
    font-weight: bold;
}

/* Label */
.ui-step__label {
    margin-top: 4px;
}