.statStrip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; } .tableSection { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; margin-bottom: 20px; } .tableHeader { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); } .tableTitle { font-size: 13px; font-weight: 600; color: var(--text-primary); } .tableMeta { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); } .chartGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .chartCard { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 16px; overflow: hidden; } .chartTitle { font-size: 12px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; } .rateGood { color: var(--success); } .rateWarn { color: var(--warning); } .rateBad { color: var(--error); }