/* Scrollable content area */ .content { display: flex; flex-direction: column; gap: 20px; } /* Route name in table */ .routeNameCell { font-size: 12px; font-weight: 500; color: var(--text-primary); font-family: var(--font-mono); } /* Application column */ .appCell { font-size: 12px; color: var(--text-secondary); } /* 2x2 chart grid */ .chartGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .chart { width: 100%; }