.content { flex: 1; overflow-y: auto; padding: 20px 24px 40px; min-width: 0; background: var(--bg-body); } /* Stat strip — 5 columns matching /agents */ .statStrip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; } /* Scope trail — matches /agents */ .scopeTrail { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: 12px; } .scopeLink { color: var(--amber); text-decoration: none; font-weight: 500; } .scopeLink:hover { text-decoration: underline; } .scopeSep { color: var(--text-muted); font-size: 10px; } .scopeCurrent { color: var(--text-primary); font-weight: 600; font-family: var(--font-mono); } /* Process info card */ .processCard { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 16px; margin-bottom: 20px; } .processGrid { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 6px 16px; font-size: 12px; font-family: var(--font-body); margin-top: 12px; } .processLabel { color: var(--text-muted); font-weight: 500; } .capTags { display: flex; gap: 4px; flex-wrap: wrap; } /* Route badges */ .routeBadges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; } /* Charts 3x2 grid */ .chartsGrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 20px; } .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; } .chartHeader { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; } .chartTitle { font-size: 13px; font-weight: 600; color: var(--text-primary); } .chartMeta { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); } /* Log + Timeline side by side */ .bottomRow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; } /* Log viewer */ .logCard { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; max-height: 420px; } .logHeader { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); } .headerActions { display: flex; align-items: center; gap: 6px; } .sortBtn, .refreshBtn { background: none; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); color: var(--text-muted); cursor: pointer; font-size: 13px; padding: 2px 6px; line-height: 1; } .sortBtn:hover, .refreshBtn:hover { color: var(--text-primary); border-color: var(--amber); } .logToolbar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border-subtle); background: var(--bg-surface); } .logSearchWrap { position: relative; flex: 1; min-width: 0; } .logSearchInput { width: 100%; padding: 5px 28px 5px 10px; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); background: var(--bg-body); color: var(--text-primary); font-size: 12px; font-family: var(--font-body); outline: none; } .logSearchInput:focus { border-color: var(--amber); } .logSearchInput::placeholder { color: var(--text-faint); } .logSearchClear { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 14px; padding: 0 4px; line-height: 1; } .logClearFilters { background: none; border: none; color: var(--text-muted); font-size: 11px; cursor: pointer; padding: 2px 6px; white-space: nowrap; } .logClearFilters:hover { color: var(--text-primary); } /* Empty state (shared) */ .logEmpty { padding: 24px; text-align: center; color: var(--text-faint); font-size: 12px; } /* Timeline card */ .timelineCard { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; max-height: 420px; } .timelineHeader { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); }