:root{--fg:#1a1a1a;--muted:#6b7280;--border:#e5e7eb;--accent:#2d6cdf;--accent-tint:#eaf1fd;--hover:#f6f8fb;--error:#b00020;--success:#1a7f37;--log-bg:#1e1e1e;--log-fg:#e6e6e6;--mono:ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace}*{box-sizing:border-box}body{margin:0;font-family:system-ui,sans-serif;color:var(--fg);line-height:1.5}.dash{display:flex;flex-direction:column;height:100vh}.dash-bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.75rem 1rem;border-bottom:1px solid var(--border)}.dash-bar h1{margin:0;font-size:1.1rem;font-weight:600}.conn{font-size:.8rem;color:var(--muted)}.conn.live{color:var(--success)}.conn.error{color:var(--error)}.dash-body{flex:1;display:flex;min-height:0}.list{width:22rem;flex-shrink:0;overflow-y:auto;border-right:1px solid var(--border)}ul.list{margin:0;padding:0;list-style:none}div.list{padding:1rem;color:var(--muted)}.list.error{color:var(--error)}.build{display:grid;grid-template-columns:auto minmax(0,1fr)auto;grid-template-areas:"dot title  status" "dot meta   status";column-gap:.6rem;row-gap:.1rem;align-items:center;width:100%;text-align:left;font:inherit;color:var(--fg);background:0 0;border:none;border-left:3px solid transparent;border-bottom:1px solid var(--border);padding:.6rem 1rem;cursor:pointer}.build:hover{background:var(--hover)}.build.selected{background:var(--accent-tint);border-left-color:var(--accent)}.build-title{grid-area:title;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.build-meta{grid-area:meta;color:var(--muted);font-size:.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.build-status{grid-area:status;color:var(--muted);font-size:.72rem;text-transform:uppercase;letter-spacing:.03em}.dot{grid-area:dot;width:.6rem;height:.6rem;border-radius:50%;background:var(--muted)}.dot-pending{background:var(--muted)}.dot-running{background:var(--accent);animation:dot-pulse 1.2s ease-in-out infinite}.dot-succeeded{background:var(--success)}.dot-failed{background:var(--error)}@keyframes dot-pulse{0%,100%{opacity:1}50%{opacity:.35}}.logs{flex:1;display:flex;flex-direction:column;min-width:0}.logs.empty{align-items:center;justify-content:center;color:var(--muted)}.logs-head{padding:.6rem 1rem;border-bottom:1px solid var(--border);font-family:var(--mono);font-size:.85rem;color:var(--muted)}.logs-body{flex:1;margin:0;padding:1rem;overflow:auto;background:var(--log-bg);color:var(--log-fg);font-family:var(--mono);font-size:.8rem;line-height:1.45;white-space:pre-wrap;word-break:break-word}:focus-visible{outline:2px solid var(--accent);outline-offset:-2px}@media(max-width:640px){.dash-body{flex-direction:column}.list{width:auto;max-height:40vh;border-right:none;border-bottom:1px solid var(--border)}}