.stats-row { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; } .health-row { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; padding: 12px 16px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); } .health-label { font-size: 0.85em; font-weight: 600; color: var(--text-muted); margin-right: 4px; } .section-title { font-size: 1.1em; font-weight: 600; color: var(--text-bright); margin-bottom: 12px; margin-top: 8px; } .error-banner { background: rgba(239, 68, 68, 0.1); border: 1px solid var(--red); color: var(--red); padding: 12px 16px; border-radius: var(--radius); font-size: 0.9em; } .loading { color: var(--text-muted); font-size: 0.9em; padding: 32px 0; } .top-files-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; } @media (max-width: 1100px) { .top-files-grid { grid-template-columns: 1fr; } } .file-link { display: flex; flex-direction: column; gap: 2px; text-decoration: none; color: inherit; } .file-link:hover .file-path { text-decoration: underline; } .file-remote { font-size: 0.75em; color: var(--text-muted); } .file-path { font-size: 0.82em; word-break: break-all; }