        .progress-circle {
            position: relative;
            display: inline-block;
            line-height: 0;
            margin: 0 auto;
        }
        .progress-circle canvas {
            display: block;
            vertical-align: top;
        }
        .smp-progress-circle-wrap {
            width: 100%;
            max-width: 7.75rem;
            margin-left: auto;
            margin-right: auto;
            padding: 4px 6px 0;
            box-sizing: border-box;
        }
        .smp-inventory-metric-card {
            min-width: 0;
        }
        .smp-inventory-metric-card__title {
            line-height: 1.2;
            word-break: normal;
            overflow-wrap: break-word;
            hyphens: none;
        }
        /* Grid column: stable flex child; card fills column width (no col-xl-2 squeeze). */
        .smp-inventory-metric-col {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .smp-inventory-metric-col > .card {
            width: 100%;
            max-width: 100%;
        }
        .progress-circle .percentage {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(1.25rem, 4.5vw, 2.1rem);
            font-weight: bold;
        }
        .progress-circle.blue .percentage { color: #3b82f6; }
        .progress-circle.red .percentage { color: #ef4444; }
        .progress-circle.green .percentage { color: #22c55e; }
        .progress-circle.yellow .percentage { color: #eab308; }
        .progress-circle.orange .percentage { color: #f97316; }
        .progress-circle.purple .percentage { color: #9333ea; }

        /* Period stats: one row per line (label | value). Narrow col-xl-2 cards cannot fit 3 columns — stacked list is stable. */
        .smp-inventory-metric-card .smp-inventory-period-stats {
            display: flex;
            flex-direction: column;
            gap: 0.22rem;
            width: 100%;
            max-width: 100%;
            margin-top: 0.75rem;
            box-sizing: border-box;
            text-align: left;
            line-height: 1.25;
        }
        .smp-inventory-metric-card .smp-inventory-period-stat {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 0.35rem;
            width: 100%;
            min-width: 0;
        }
        .smp-inventory-metric-card .smp-inventory-period-stat__label {
            color: #6c757d;
            font-size: 0.7rem;
            line-height: 1.25;
            flex: 1 1 auto;
            min-width: 0;
        }
        .smp-inventory-metric-card .smp-inventory-period-stat__value {
            font-weight: 700;
            font-size: 0.8125rem;
            line-height: 1.25;
            flex: 0 0 auto;
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }