.progress-cell{box-sizing:border-box; display:flex; align-items:center; min-width:260px; height:24px; line-height:24px; position:relative}
/* base full-width pastel red bar: occupy full available width */
.progress-cell .progress-base{background:#ef4545;width:100%;height:12px;position:relative;overflow:hidden;flex:1 1 auto}
/* foreground green bar representing percentage - absolute positioning so 100% exactly matches base */
.progress-cell .progress-foreground{background:#16a34a;position:absolute;left:0;top:0;height:100%;width:0%;box-shadow:inset 0 -2px 0 rgba(0,0,0,0.08);box-sizing:border-box}
/* percentage label positioned on top/right so it doesn't shrink the bar */
.progress-label{font-size:12px;color:#0b2a66;font-weight:600;line-height:24px;position:absolute;right:8px;top:0;padding:0 4px}
