/* Kole UI ProgressVariants 样式 — 对齐 组件7.txt ProgressVariants：线型/圆形/仪表盘，状态色，百分比 */

.kole-progress { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: var(--kole-color-text-body); }
.kole-progress-line-wrap { display: flex; align-items: center; }
.kole-progress-line { flex: 1; height: 8px; background: var(--kole-color-border); border-radius: 4px; overflow: hidden; }
.kole-progress-line-fill { height: 100%; background: var(--kole-color-brand); border-radius: 4px; transition: width .3s; }
.kole-progress.is-success .kole-progress-line-fill { background: var(--kole-color-success); }
.kole-progress.is-warning .kole-progress-line-fill { background: var(--kole-color-warning); }
.kole-progress.is-error .kole-progress-line-fill { background: var(--kole-color-error); }
.kole-progress-text { margin-inline-start: 8px; font-size: 13px; min-width: 36px; }
.kole-progress.is-success .kole-progress-text { color: var(--kole-color-success); }
.kole-progress.is-warning .kole-progress-text { color: var(--kole-color-warning); }
.kole-progress.is-error .kole-progress-text { color: var(--kole-color-error); }
.kole-progress-circle { position: relative; display: inline-flex; }
.kole-progress-circle-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 500; }
.kole-progress-circle.is-success .kole-progress-circle-text { color: var(--kole-color-success); }
.kole-progress-circle.is-warning .kole-progress-circle-text { color: var(--kole-color-warning); }
.kole-progress-circle.is-error .kole-progress-circle-text { color: var(--kole-color-error); }
