.progress-bar {
    height: 1rem;
    width: 100%;
    background-color: rgb(243 244 246);
    border-radius: 9999px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.progress-bar-value {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: var(--progress-color, var(--primary-500));
    /* Uses config color, fallback to primary */
    border-radius: 9999px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.dark .progress-bar {
    background-color: rgb(31 41 55);
}

.dark .progress-bar-value {
    background-color: var(--progress-color, var(--primary-400));
    /* Uses config color, fallback to primary */
}