/* Progress Bar List — aum-pbar */
.aum-pbar-list {
    display: flex;
    flex-direction: column;
    gap: var(--aum-pbar-item-gap, 20px);
}

.aum-pbar-item { display: flex; flex-direction: column; gap: 8px; }

.aum-pbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.aum-pbar-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-on-bg, #111110);
    line-height: 1.4;
}

.aum-pbar-value-label {
    font-size: 13px;
    color: var(--text-muted, #6f6e69);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.aum-pbar-track {
    width: 100%;
    height: 8px;
    background-color: var(--border, rgba(0,0,0,0.08));
    border-radius: 100px;
    overflow: hidden;
}

.aum-pbar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--primary, #3b82f6);
    border-radius: 100px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
