.job-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
}

.job-row:hover {
    background: #f9fafb;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}

.status-dot.ok {
    background: #22c55e;
}

.status-dot.error {
    background: #ef4444;
}

.checkpoint-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkpoint-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-left: 4px;
}

.checkpoint-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    bottom: -8px;
    width: 2px;
    background: #d1d5db;
}

.checkpoint-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkpoint-dot.ok {
    background: #22c55e;
}

.checkpoint-dot.warning {
    background: #f59e0b;
}

.checkpoint-dot.error {
    background: #ef4444;
}

.checkpoint-dot.pending {
    background: #d1d5db;
}

nav[aria-label="breadcrumb"] ul {
    list-style: none;
    display: flex;
    gap: 4px;
    padding: 0;
    font-size: 0.9em;
}

nav[aria-label="breadcrumb"] li:not(:last-child)::after {
    content: ' / ';
    margin-left: 4px;
    color: #9ca3af;
}

details > summary {
    cursor: pointer;
}

pre {
    overflow-x: auto;
}
