.chain-card-flow.layered {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    min-height: 100%;
}

.execution-board-shell {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    border-radius: 14px;
    padding-bottom: 8px;
}

.execution-board-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.execution-board-scroll::-webkit-scrollbar {
    display: none;
}

.chain-lane-board {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    padding-bottom: 4px;
}

.chain-card-flow.layered .chain-layer {
    min-width: 224px;
    max-width: 252px;
    gap: 10px;
    justify-content: flex-start;
}

.execution-observability-shell {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
}

.chain-card-flow.layered .chain-layer-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 6px 10px;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    border: 1px solid #dbe3ef;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.chain-card-flow.layered .layer-state {
    color: #64748b;
    font-size: 11px;
}

.chain-layer-connector {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 76px;
    gap: 4px;
}

.layered-connector-track {
    position: relative;
    width: 76px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.16), rgba(96, 165, 250, 0.18), rgba(148, 163, 184, 0.16));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
    overflow: hidden;
}

.layered-connector-pulse {
    position: absolute;
    top: 1px;
    width: 24px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.96), rgba(59, 130, 246, 0.18));
    animation: layeredConnectorFlow 2.1s linear infinite;
}

.layered-connector-pulse.delay {
    animation-delay: 1.05s;
}

.chain-layer-connector.active .layered-connector-track {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.14), rgba(37, 99, 235, 0.24), rgba(59, 130, 246, 0.14));
    box-shadow: 0 0 16px rgba(96, 165, 250, 0.18);
}

.chain-layer-connector.completed .layered-connector-track {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.12));
}

.chain-layer-connector.failed .layered-connector-track {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.22), rgba(239, 68, 68, 0.12));
}

.chain-layer-connector.data-transfer .layered-connector-track {
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.26);
}

.connector-caption {
    order: -1;
    font-size: 11px;
    color: #94a3b8;
    line-height: 1;
}

.chain-card-flow.layered .execution-observability-card {
    min-width: 208px;
    max-width: 228px;
    min-height: 200px;
    max-height: 380px; /* P4: 防止卡片溢出 */
    height: max-content;
    align-self: flex-start;
    gap: 8px;
    padding: 12px 12px 10px;
    overflow: visible;
    cursor: default;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.execution-board-bottom-scroll-host {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 8px;
    z-index: 105;
    height: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 999px;
    scrollbar-gutter: stable;
}

.execution-board-bottom-scroll-host::-webkit-scrollbar {
    height: 12px;
}

.execution-board-bottom-scroll-host::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
}

.execution-board-bottom-scroll-host::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.68);
    border-radius: 999px;
}

.execution-board-bottom-scroll-spacer {
    height: 1px;
}

.chain-cards-wrapper.has-execution-bottom-scroll .ar-hud-bottom-bar {
    display: none;
}

.chain-cards-wrapper.has-execution-bottom-scroll {
    align-items: flex-start;
}

.chain-cards-wrapper.has-execution-bottom-scroll .chain-cards-container {
    padding-bottom: 84px;
}

.chain-card-flow.layered .execution-observability-card.compact-completed {
    min-width: 194px;
    max-width: 204px;
    min-height: 252px;
}

.execution-observability-card.is-expanded {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.execution-observability-card .chain-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.execution-observability-card .chain-card-head-main {
    min-width: 0;
    flex: 1;
}

.execution-observability-card .chain-card-title {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.execution-observability-card .chain-card-subtitle {
    margin: 4px 0 0;
}

.chain-card-expand-toggle {
    border: 1px solid #d7deea;
    border-radius: 999px;
    padding: 4px 10px;
    background: #ffffff;
    color: #475569;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chain-card-expand-toggle.block {
    width: 100%;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 600;
}

.chain-card-expand-toggle:hover {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.chain-card-observability-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.chain-card-stage-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}

.chain-card-stage-pill {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 7px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    min-width: 0;
}

.chain-card-stage-pill .stage-label {
    font-size: 9px;
    color: #94a3b8;
}

.chain-card-stage-pill .stage-value {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chain-card-stage-pill.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.chain-card-stage-pill.success .stage-value {
    color: #15803d;
}

.chain-card-stage-pill.running {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.chain-card-stage-pill.running .stage-value {
    color: #2563eb;
}

.chain-card-stage-pill.blocked {
    background: #fffbeb;
    border-color: #fde68a;
}

.chain-card-stage-pill.blocked .stage-value {
    color: #b45309;
}

.chain-card-stage-pill.failed {
    background: #fef2f2;
    border-color: #fecaca;
}

.chain-card-stage-pill.failed .stage-value {
    color: #dc2626;
}

.chain-card-stage-pill.neutral {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.chain-card-progress-inline {
    padding: 6px 9px;
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid #e2e8f0;
    font-size: 11px;
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.observability-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.04);
}

.observability-pill.completed { color: #389e0d; background: rgba(82, 196, 26, 0.1); }
.observability-pill.running { color: #096dd9; background: rgba(24, 144, 255, 0.1); }
.observability-pill.failed { color: #cf1322; background: rgba(255, 77, 79, 0.1); }
.observability-pill.pending { color: #595959; background: rgba(0, 0, 0, 0.05); }

.chain-card-focus-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(245, 247, 255, 0.96);
    border-left: 4px solid #d9d9d9;
}

.chain-card-focus-panel.running { border-left-color: #1890ff; background: rgba(230, 247, 255, 0.95); }
.chain-card-focus-panel.failed { border-left-color: #ff4d4f; background: rgba(255, 242, 240, 0.95); }
.chain-card-focus-panel.completed { border-left-color: #52c41a; background: rgba(246, 255, 237, 0.95); }
.chain-card-focus-panel.queued { border-left-color: #faad14; background: rgba(255, 251, 230, 0.95); }
.chain-card-focus-panel.blocked { border-left-color: #2563eb; background: rgba(239, 246, 255, 0.98); }

.chain-card-focus-label,
.node-progress-label {
    font-size: 11px;
    color: #8c8c8c;
}

.chain-card-focus-value,
.node-progress-value {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.chain-card-node-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.chain-card-footer-action {
    padding-top: 2px;
    width: 100%;
}

@keyframes layeredConnectorFlow {
    0% { left: -24px; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: calc(100% + 6px); opacity: 0; }
}

.hud-style-minimal .execution-board-scroll::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.9);
}

.hud-style-minimal .execution-board-scroll::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.9);
}

.hud-style-minimal .execution-board-bottom-scroll-host::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.9);
}

.hud-style-minimal .execution-board-bottom-scroll-host::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.9);
}

.hud-style-minimal .chain-card-flow.layered .chain-layer-badge {
    background: #ffffff;
    color: #334155;
    border-color: #dbe3ef;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.hud-style-minimal .chain-card-flow.layered .layer-state {
    color: #64748b;
}

.hud-style-minimal .chain-layer-connector .layered-connector-track {
    background: linear-gradient(90deg, rgba(203, 213, 225, 0.48), rgba(191, 219, 254, 0.7), rgba(203, 213, 225, 0.48));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.hud-style-minimal .chain-layer-connector.active .layered-connector-track {
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.5), rgba(59, 130, 246, 0.72), rgba(147, 197, 253, 0.5));
}

.hud-style-minimal .chain-layer-connector.completed .layered-connector-track {
    background: linear-gradient(90deg, rgba(187, 247, 208, 0.75), rgba(34, 197, 94, 0.35), rgba(187, 247, 208, 0.75));
}

.hud-style-minimal .chain-layer-connector.failed .layered-connector-track {
    background: linear-gradient(90deg, rgba(254, 202, 202, 0.75), rgba(239, 68, 68, 0.28), rgba(254, 202, 202, 0.75));
}

.hud-style-minimal .layered-connector-pulse {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.98), rgba(96, 165, 250, 0.32));
}

.hud-style-minimal .connector-caption {
    color: #94a3b8;
}

.hud-style-minimal .execution-observability-card {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.hud-style-minimal .execution-observability-card.is-expanded {
    border-color: #bfdbfe;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.12);
}

.hud-style-minimal .chain-card-stage-pill {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.hud-style-minimal .chain-card-progress-inline {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #334155;
}

.hud-style-minimal .chain-card-expand-toggle {
    background: #ffffff;
    color: #475569;
    border-color: #d7deea;
}

.hud-style-minimal .chain-card-expand-toggle[aria-expanded="true"] {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.hud-style-minimal .chain-card-focus-panel {
    background: #f8fafc;
    border-left-color: #cbd5e1;
}

.hud-style-minimal .chain-card-focus-panel.running,
.hud-style-minimal .chain-card-focus-panel.blocked {
    background: #eff6ff;
    border-left-color: #60a5fa;
}

.hud-style-minimal .chain-card-focus-panel.completed {
    background: #f0fdf4;
    border-left-color: #4ade80;
}

.hud-style-minimal .chain-card-focus-panel.failed {
    background: #fef2f2;
    border-left-color: #f87171;
}

.hud-style-minimal .chain-card-focus-panel.queued {
    background: #fffbeb;
    border-left-color: #fbbf24;
}

@media (max-width: 1680px) {
    .chain-card-flow.layered .chain-layer {
        min-width: 200px;
    }
}

@media (max-width: 1200px) {
    .chain-layer-connector {
        display: none;
    }

    .chain-card-flow.layered .chain-layer {
        min-width: 188px;
        max-width: 220px;
    }
}

/* ============================================================
   Wave P · 成片与中间产物预览
   SSOT: docs/pipeline/DISPATCH_OUTPUTS_PREVIEW_DESIGN.md
   ============================================================ */
.outputs-preview-section {
    margin: 12px 16px 0;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.outputs-preview-section[hidden] { display: none !important; }

.outputs-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.outputs-preview-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.outputs-preview-execution {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    color: #64748b;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.outputs-preview-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.outputs-preview-empty,
.outputs-preview-loading {
    color: #94a3b8;
    font-size: 12px;
    padding: 10px 4px;
}

.outputs-preview-error {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 12px;
}

.outputs-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 6px;
    letter-spacing: 0.02em;
}

.outputs-final-video {
    width: 100%;
    max-height: 360px;
    border-radius: 8px;
    background: #0f172a;
}

.outputs-assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.outputs-asset {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 6px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 11px;
    color: #475569;
    min-width: 0;
}

.outputs-asset img,
.outputs-asset video,
.outputs-asset audio {
    width: 100%;
    max-height: 140px;
    border-radius: 6px;
    background: #0f172a;
    object-fit: contain;
}

.outputs-asset figcaption {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.outputs-asset-file a {
    color: #2563eb;
    text-decoration: none;
}

.outputs-asset-file a:hover { text-decoration: underline; }

.outputs-cluster {
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.outputs-cluster-title {
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.outputs-pin {
    margin: 4px 0;
}

.outputs-pin summary {
    cursor: pointer;
    font-size: 11px;
    color: #334155;
    padding: 2px 0;
}

.outputs-pin-json {
    margin: 4px 0 0;
    padding: 8px;
    background: #0f172a;
    color: #e2e8f0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    border-radius: 6px;
    max-height: 240px;
    overflow: auto;
    white-space: pre;
}

/* ============================================================
   Wave A · Traceable IDs 首屏直出
   SSOT: docs/pipeline/DISPATCH_TRACEABLE_IDS_EXPOSURE_SPEC.md
   ============================================================ */
.project-header-trace {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    padding: 6px 0 0;
    margin-top: 2px;
    font-size: 11px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: #334155;
}

.project-header-trace:empty { display: none; }

.meta-trace-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    max-width: 260px;
    overflow: hidden;
}

.meta-trace-item .trace-chip-label {
    color: #64748b;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.meta-trace-item .trace-chip-value {
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.meta-trace-item-missing {
    background: #fef2f2;
    border-color: #fecaca;
}

.meta-trace-item-missing .trace-chip-value { color: #b91c1c; }

.project-detail-modal-trace {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    padding: 6px 16px 10px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 11px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: #334155;
    background: #f8fafc;
}

.project-detail-modal-trace:empty { display: none; }

.project-detail-modal-trace .trace-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    max-width: 260px;
    overflow: hidden;
}

.project-detail-modal-trace .trace-chip-label {
    color: #64748b;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.project-detail-modal-trace .trace-chip-value {
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
}

.project-detail-modal-trace .trace-chip-missing {
    background: #fef2f2;
    border-color: #fecaca;
}

.project-detail-modal-trace .trace-chip-missing .trace-chip-value {
    color: #b91c1c;
}

.trace-chip-lineage {
    max-width: 420px !important;
}

/* ============================================================
   Wave C · 人审阻塞锚点 chip
   SSOT: docs/pipeline/DISPATCH_REVIEW_BLOCK_ANCHOR_RECON.md
   ============================================================ */
.review-block-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    margin-left: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
    color: #991b1b;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    animation: review-block-pulse 2s ease-in-out infinite;
}

.review-block-chip[hidden] { display: none !important; }

.review-block-chip:hover {
    background: linear-gradient(90deg, #fecaca 0%, #fca5a5 100%);
    border-color: #f87171;
}

.review-block-chip:focus-visible {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.review-block-chip-icon { font-size: 12px; }

.review-block-chip-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
}

@keyframes review-block-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
    50% { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10); }
}

/* ── D5 降级观测面：备用模型执行标记 ── */
.chain-card-fallback-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    margin: 4px 0 2px;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    font-size: 11px;
    color: #b45309;
    line-height: 1.4;
    font-weight: 500;
}
.chain-card-fallback-badge .fallback-icon {
    font-size: 12px;
    flex-shrink: 0;
}
.chain-card-fallback-badge .fallback-text {
    white-space: nowrap;
}

/* D5 HUD 降级统计面板 */
.hud-fallback-panel {
    border-left: 3px solid #f59e0b;
}
.hud-fallback-panel .hud-fallback-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
    font-size: 12px;
}
.hud-fallback-panel .hud-fallback-count {
    font-size: 18px;
    font-weight: 700;
    color: #b45309;
}
.hud-fallback-panel .hud-fallback-label {
    color: #78716c;
    font-size: 11px;
}

/* ── D5 执行摘要条 ── */
.execution-summary-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    margin: 0 0 10px;
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid #e2e8f0;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}
.execution-summary-main {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.execution-summary-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-size: 11px;
    white-space: nowrap;
}
.execution-summary-pill.fallback-warn {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
    color: #b45309;
    font-weight: 600;
}
.execution-summary-label {
    color: #94a3b8;
}
.execution-summary-value {
    color: #334155;
    font-weight: 600;
}
.execution-summary-pill.fallback-warn .execution-summary-label,
.execution-summary-pill.fallback-warn .execution-summary-value {
    color: #b45309;
}
.execution-summary-stats {
    display: flex;
    gap: 8px;
    align-items: center;
}
.execution-summary-stat {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
}
.execution-summary-stat.completed { color: #15803d; background: #f0fdf4; }
.execution-summary-stat.running { color: #2563eb; background: #eff6ff; }
.execution-summary-stat.failed { color: #dc2626; background: #fef2f2; }
.execution-summary-stat.total { color: #475569; background: #f8fafc; }

@media (max-width: 1200px) {
    .execution-summary-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

