.health-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    padding: 0 20px;
    background: #eef0f3;
    color: #333 !important;
    font-family: var(--body, system-ui, sans-serif);
    font-size: 10pt;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none !important;
    border-bottom: 1px solid #d8dce2;
}
.health-bar .health-bar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b9bfc7;
    flex: none;
}
.health-bar .health-bar-status {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.health-bar .health-bar-detail {
    flex: 1;
    color: #555;
}
.health-bar .health-bar-time {
    color: #888;
    font-variant-numeric: tabular-nums;
}
.health-bar .health-bar-commit {
    font-family: ui-monospace, 'JetBrains Mono', monospace;
    color: #8a909a;
    flex: none;
}
.health-bar .health-bar-open {
    color: #4a5568;
    margin-left: 8px;
}
.health-bar.loading .health-bar-status {
    color: #888;
}
.health-bar.bar-ok {
    background: #e7f3ec;
    border-bottom-color: #b6d6c0;
}
.health-bar.bar-ok .health-bar-dot {
    background: #2ea043;
}
.health-bar.bar-ok .health-bar-status {
    color: #1f6f33;
}
.health-bar.bar-fail {
    background: #fbe7e7;
    border-bottom-color: #e1b1b1;
}
.health-bar.bar-fail .health-bar-dot {
    background: #cc2a2a;
}
.health-bar.bar-fail .health-bar-status {
    color: #a02323;
}
.health-bar.bar-error {
    background: #fff3e0;
    border-bottom-color: #f0c98a;
}
.health-bar.bar-error .health-bar-dot {
    background: #d68b1f;
}
.health-bar.bar-error .health-bar-status {
    color: #7a4a0f;
}
