@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";

/* src/styles.scss */
:root {
  --bg: #fafafa;
  --bg-2: #f4f4f5;
  --panel: #ffffff;
  --panel-2: #fafafa;
  --ink: #18181b;
  --ink-2: #3f3f46;
  --muted: #71717a;
  --muted-2: #a1a1aa;
  --line: #e4e4e7;
  --line-2: #d4d4d8;
  --accent: #4f46e5;
  --accent-2: #4338ca;
  --accent-soft: #eef2ff;
  --good: #16a34a;
  --good-soft: #dcfce7;
  --warn: #b45309;
  --warn-soft: #fef3c7;
  --bad: #dc2626;
  --bad-soft: #fee2e2;
  --info: #0284c7;
  --info-soft: #e0f2fe;
  --shadow-sm: 0 1px 0 rgba(24, 24, 27, 0.03), 0 1px 2px rgba(24, 24, 27, 0.05);
  --shadow-md: 0 1px 0 rgba(24, 24, 27, 0.03), 0 8px 24px -10px rgba(24, 24, 27, 0.12);
  color-scheme: light;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --brand-gradient:
    linear-gradient(
      135deg,
      #6366f1 0%,
      #4f46e5 60%,
      #4338ca 100%);
  --font-sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    system-ui,
    "Segoe UI",
    Roboto,
    sans-serif;
  --font-mono:
    ui-monospace,
    SFMono-Regular,
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  --font-serif:
    Georgia,
    "Times New Roman",
    serif;
  --row-y: 10px;
  --section-y: 20px;
  --card-p: 18px;
  --bg-0: var(--bg);
  --bg-1: var(--panel);
  --fg-0: var(--ink);
  --fg-1: var(--muted);
  --fg-2: var(--muted-2);
  --accent-hover: var(--accent-2);
  --accent-fg: #ffffff;
  --border: var(--line);
  --success: var(--good);
  --warning: var(--warn);
  --danger: var(--bad);
  --shadow-lg: 0 1px 0 rgba(20, 17, 13, 0.05), 0 16px 48px -10px rgba(20, 17, 13, 0.18);
}
:root[data-theme=dark] {
  --bg: #09090b;
  --bg-2: #131316;
  --panel: #111113;
  --panel-2: #18181b;
  --ink: #fafafa;
  --ink-2: #d4d4d8;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --line: #26262b;
  --line-2: #3f3f46;
  --accent: #818cf8;
  --accent-2: #a5b4fc;
  --accent-soft: rgba(129, 140, 248, 0.14);
  --good: #4ade80;
  --good-soft: rgba(74, 222, 128, 0.13);
  --warn: #fbbf24;
  --warn-soft: rgba(251, 191, 36, 0.13);
  --bad: #f87171;
  --bad-soft: rgba(248, 113, 113, 0.13);
  --info: #60a5fa;
  --info-soft: rgba(96, 165, 250, 0.13);
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 1px 0 rgba(0, 0, 0, 0.4), 0 8px 24px -10px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --bg: #09090b;
    --bg-2: #131316;
    --panel: #111113;
    --panel-2: #18181b;
    --ink: #fafafa;
    --ink-2: #d4d4d8;
    --muted: #a1a1aa;
    --muted-2: #71717a;
    --line: #26262b;
    --line-2: #3f3f46;
    --accent: #818cf8;
    --accent-2: #a5b4fc;
    --accent-soft: rgba(129, 140, 248, 0.14);
    --good: #4ade80;
    --good-soft: rgba(74, 222, 128, 0.13);
    --warn: #fbbf24;
    --warn-soft: rgba(251, 191, 36, 0.13);
    --bad: #f87171;
    --bad-soft: rgba(248, 113, 113, 0.13);
    --info: #60a5fa;
    --info-soft: rgba(96, 165, 250, 0.13);
    --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 1px 0 rgba(0, 0, 0, 0.4), 0 8px 24px -10px rgba(0, 0, 0, 0.5);
    color-scheme: dark;
  }
}
:root[data-density=compact] {
  --row-y: 7px;
  --section-y: 14px;
  --card-p: 14px;
}
:root[data-density=comfy] {
  --row-y: 14px;
  --section-y: 28px;
  --card-p: 24px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 {
  font-size: 22px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 14.5px;
}
p {
  margin: 0 0 0.75rem;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  font-size: 12.5px;
  box-shadow: var(--shadow-sm);
  transition:
    background-color 0.12s ease,
    border-color 0.12s ease,
    opacity 0.12s ease;
}
button:hover:not(:disabled) {
  background: var(--panel-2);
  border-color: var(--line-2);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button:disabled:has(.btn-spinner) {
  opacity: 0.85;
  cursor: progress;
}
button.primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
button.primary:hover:not(:disabled) {
  background: var(--ink-2);
  border-color: var(--ink-2);
}
button.accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent-2);
}
button.accent:hover:not(:disabled) {
  background: var(--accent-2);
}
button.danger {
  background: var(--bad);
  color: #fff;
  border-color: var(--bad);
}
button.danger:hover:not(:disabled) {
  opacity: 0.9;
}
button.ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--muted);
}
button.ghost:hover:not(:disabled) {
  background: var(--panel-2);
  color: var(--ink);
}
button:active:not(:disabled) {
  transform: translateY(0.5px);
  box-shadow: none;
}
button.primary:hover:not(:disabled),
button.accent:hover:not(:disabled),
button.danger:hover:not(:disabled) {
  box-shadow: var(--shadow-md);
}
button.sm {
  padding: 3px 8px;
  font-size: 11px;
}
button.lg {
  padding: 8px 16px;
  font-size: 13.5px;
  border-radius: var(--radius);
}
button.icon {
  padding: 0;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}
button.block {
  width: 100%;
}
.btn-spinner {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  opacity: 0.85;
  animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
input,
select,
textarea {
  font: inherit;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  width: 100%;
  font-size: 13px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23807868' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--card-p);
  box-shadow: var(--shadow-sm);
}
.hz-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.hz-card-h {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 500;
}
.hz-card-h-meta {
  color: var(--muted);
  font-size: 11.5px;
  font-family: var(--font-mono);
  white-space: nowrap;
}
.hz-card-b {
  padding: var(--card-p);
}
.hz-card-b.tight {
  padding: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
th {
  text-align: left;
  padding: 9px 16px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
  white-space: nowrap;
}
td {
  padding: var(--row-y) 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
tbody tr {
  transition: background-color 0.1s ease;
}
tbody tr:hover {
  background: var(--panel-2);
}
tbody tr:last-child td {
  border-bottom: none;
}
.num {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
}
.mono {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}
.status-pill,
.hz-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  border: 1px solid transparent;
}
.hz-pill::before,
.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.hz-pill.no-dot::before,
.status-pill.no-dot::before {
  display: none;
}
.status-pill.active,
.hz-pill.good {
  background: var(--good-soft);
  color: var(--good);
}
.status-pill.pending,
.hz-pill.warn {
  background: var(--warn-soft);
  color: var(--warn);
}
.status-pill.failed,
.hz-pill.bad {
  background: var(--bad-soft);
  color: var(--bad);
}
.hz-pill.info {
  background: var(--info-soft);
  color: var(--info);
}
.hz-pill.muted {
  background: var(--bg-2);
  color: var(--muted);
  border-color: var(--line);
}
.hz-pill.accent {
  background: var(--accent-soft);
  color: var(--accent-2);
}
.hz-pill.live::before {
  animation: hz-pulse 1.8s infinite;
  box-shadow: 0 0 0 2px currentColor;
  opacity: 0.5;
}
@keyframes hz-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hz-chip {
  padding: 3px 8px;
  font-size: 11.5px;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hz-chip:hover {
  color: var(--ink);
}
.hz-chip.is-on {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.hz-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  background: var(--bg-2);
  color: var(--muted);
  border: 1px solid var(--line);
}
.hz-kpi {
  padding: 14px 16px;
}
.hz-kpi-lbl {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.hz-kpi-val {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hz-kpi-val small {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.hz-kpi-delta {
  font-size: 11.5px;
  margin-top: 5px;
  font-family: var(--font-mono);
}
.hz-kpi-delta.up {
  color: var(--good);
}
.hz-kpi-delta.down {
  color: var(--bad);
}
.hz-kpi-delta.flat {
  color: var(--muted);
}
.hz-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hz-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hz-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hz-grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}
.hz-bar {
  height: 6px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
}
.hz-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.hz-bar-fill.good {
  background: var(--good);
}
.hz-bar-fill.warn {
  background: var(--warn);
}
.hz-code {
  font-family: var(--font-mono);
  font-size: 11.5px;
  background: var(--bg-2);
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  white-space: pre-wrap;
  overflow-x: auto;
  border: 1px solid var(--line);
  line-height: 1.55;
}
.hz-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}
.hz-tab {
  padding: 9px 12px;
  font-size: 12.5px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 500;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  box-shadow: none;
}
.hz-tab:hover {
  color: var(--ink);
}
.hz-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.hz-mono {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: var(--bg-2);
  color: var(--ink-2);
  display: inline-grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  flex: 0 0 auto;
}
.hz-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
  border: 0;
}
.hz-mt {
  margin-top: 12px;
}
.hz-mt-lg {
  margin-top: 20px;
}
.hz-muted {
  color: var(--muted);
}
.hz-mono-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}
.hz-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hz-flex-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hz-spread {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hz-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.hz-page-h {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.hz-page-h h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.hz-page-h .hz-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.hz-page-h-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.hz-page-h > :first-child {
  min-width: 0;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 999px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted-2);
}

/* node_modules/xterm/css/xterm.css */
/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */
.xterm {
  cursor: text;
  position: relative;
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.xterm.focus,
.xterm:focus {
  outline: none;
}
.xterm .xterm-helpers {
  position: absolute;
  top: 0;
  z-index: 5;
}
.xterm .xterm-helper-textarea {
  padding: 0;
  border: 0;
  margin: 0;
  position: absolute;
  opacity: 0;
  left: -9999em;
  top: 0;
  width: 0;
  height: 0;
  z-index: -5;
  white-space: nowrap;
  overflow: hidden;
  resize: none;
}
.xterm .composition-view {
  background: #000;
  color: #FFF;
  display: none;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
}
.xterm .composition-view.active {
  display: block;
}
.xterm .xterm-viewport {
  background-color: #000;
  overflow-y: scroll;
  cursor: default;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.xterm .xterm-screen {
  position: relative;
}
.xterm .xterm-screen canvas {
  position: absolute;
  left: 0;
  top: 0;
}
.xterm .xterm-scroll-area {
  visibility: hidden;
}
.xterm-char-measure-element {
  display: inline-block;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: -9999em;
  line-height: normal;
}
.xterm.enable-mouse-events {
  cursor: default;
}
.xterm.xterm-cursor-pointer,
.xterm .xterm-cursor-pointer {
  cursor: pointer;
}
.xterm.column-select.focus {
  cursor: crosshair;
}
.xterm .xterm-accessibility,
.xterm .xterm-message {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: transparent;
  pointer-events: none;
}
.xterm .live-region {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.xterm-dim {
  opacity: 1 !important;
}
.xterm-underline-1 {
  text-decoration: underline;
}
.xterm-underline-2 {
  text-decoration: double underline;
}
.xterm-underline-3 {
  text-decoration: wavy underline;
}
.xterm-underline-4 {
  text-decoration: dotted underline;
}
.xterm-underline-5 {
  text-decoration: dashed underline;
}
.xterm-overline {
  text-decoration: overline;
}
.xterm-overline.xterm-underline-1 {
  text-decoration: overline underline;
}
.xterm-overline.xterm-underline-2 {
  text-decoration: overline double underline;
}
.xterm-overline.xterm-underline-3 {
  text-decoration: overline wavy underline;
}
.xterm-overline.xterm-underline-4 {
  text-decoration: overline dotted underline;
}
.xterm-overline.xterm-underline-5 {
  text-decoration: overline dashed underline;
}
.xterm-strikethrough {
  text-decoration: line-through;
}
.xterm-screen .xterm-decoration-container .xterm-decoration {
  z-index: 6;
  position: absolute;
}
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
  z-index: 7;
}
.xterm-decoration-overview-ruler {
  z-index: 8;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
.xterm-decoration-top {
  z-index: 2;
  position: relative;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
