/* src/styles.scss */
:root {
  --bg-base: #F6F7FB;
  --bg-surface: #FFFFFF;
  --bg-surface-hover: #EEF0F7;
  --text-primary: #0F1423;
  --text-secondary: #5A6282;
  --text-tertiary: #98A0BB;
  --border-subtle: rgba(15, 20, 45, 0.08);
  --border-strong: rgba(15, 20, 45, 0.15);
  --brand-primary: #D4880A;
  --brand-primary-hover: #BE7808;
  --brand-primary-muted: rgba(212, 136, 10, 0.10);
  --color-success: #00A880;
  --color-success-bg: rgba(0, 168, 128, 0.08);
  --color-success-border: rgba(0, 168, 128, 0.20);
  --color-warning: #C97D0A;
  --color-warning-bg: rgba(201, 125, 10, 0.08);
  --color-warning-border: rgba(201, 125, 10, 0.20);
  --color-danger: #D9365A;
  --color-danger-bg: rgba(217, 54, 90, 0.08);
  --color-danger-border: rgba(217, 54, 90, 0.20);
  --color-info: #2272D4;
  --color-info-bg: rgba(34, 114, 212, 0.08);
  --color-info-border: rgba(34, 114, 212, 0.20);
  --sidebar-width: 240px;
  --sidebar-bg: #070810;
  --sidebar-bg-elevated: #0E1022;
  --sidebar-text: rgba(200, 208, 232, 0.40);
  --sidebar-text-active: #F0EDFF;
  --sidebar-border: rgba(255, 255, 255, 0.055);
  --sidebar-accent: #F0A832;
  --sidebar-item-hover: rgba(255, 255, 255, 0.036);
  --sidebar-item-active-bg: rgba(240, 168, 50, 0.09);
  --shadow-xs: 0 1px 2px rgba(15, 20, 50, 0.05);
  --shadow-sm: 0 2px 4px rgba(15, 20, 50, 0.06), 0 1px 2px rgba(15, 20, 50, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 20, 50, 0.08), 0 2px 6px rgba(15, 20, 50, 0.04);
  --shadow-lg: 0 8px 32px rgba(15, 20, 50, 0.10), 0 4px 12px rgba(15, 20, 50, 0.06);
  --shadow-glow-brand: 0 0 20px rgba(240, 168, 50, 0.18), 0 4px 12px rgba(217, 119, 6, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --radius-full: 999px;
  --radius-card: 14px;
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-7: 1.75rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --ease-fast: 100ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-expressive: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-theme=dark] {
  --bg-base: #07090E;
  --bg-surface: #0C0F1A;
  --bg-surface-hover: #121624;
  --text-primary: #D8E0F5;
  --text-secondary: #73809E;
  --text-tertiary: #687695;
  --border-subtle: rgba(255, 255, 255, 0.062);
  --border-strong: rgba(255, 255, 255, 0.11);
  --brand-primary: #F0A832;
  --brand-primary-hover: #F5BA50;
  --brand-primary-muted: rgba(240, 168, 50, 0.11);
  --color-success: #00D4A8;
  --color-success-bg: rgba(0, 212, 168, 0.10);
  --color-success-border: rgba(0, 212, 168, 0.20);
  --color-warning: #F0A832;
  --color-warning-bg: rgba(240, 168, 50, 0.10);
  --color-warning-border: rgba(240, 168, 50, 0.20);
  --color-danger: #FF4F70;
  --color-danger-bg: rgba(255, 79, 112, 0.10);
  --color-danger-border: rgba(255, 79, 112, 0.20);
  --color-info: #4B9EFF;
  --color-info-bg: rgba(75, 158, 255, 0.10);
  --color-info-border: rgba(75, 158, 255, 0.20);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.50), 0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-glow-brand: 0 0 28px rgba(240, 168, 50, 0.24);
}
:root {
  --font-sans:
    "Nunito Sans",
    ui-sans-serif,
    system-ui,
    sans-serif;
  --font-display: "Figtree", sans-serif;
  --font-mono:
    "JetBrains Mono",
    "Fira Code",
    ui-monospace,
    monospace;
  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.5rem;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.55;
  --leading-relaxed: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
}
h1 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h4 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}
p {
  margin: 0;
  line-height: var(--leading-normal);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: var(--leading-normal);
  transition: background var(--ease-base), color var(--ease-base);
}
a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--ease-fast);
}
a:hover {
  color: var(--brand-primary-hover);
}
a:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: var(--text-primary);
}
img,
svg {
  display: block;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-tertiary);
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.live {
  background: var(--color-success);
  animation: pulse-ring 2.6s ease-in-out infinite;
}
.status-dot.degraded {
  background: var(--color-warning);
}
.status-dot.down {
  background: var(--color-danger);
}
.status-dot.unknown {
  background: var(--text-tertiary);
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 168, 0.55);
  }
  60% {
    box-shadow: 0 0 0 5px rgba(0, 212, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 168, 0);
  }
}
.skeleton {
  background:
    linear-gradient(
      90deg,
      var(--bg-surface-hover) 25%,
      var(--border-subtle) 50%,
      var(--bg-surface-hover) 75%);
  background-size: 400% 100%;
  animation: skeleton-sweep 1.8s ease-in-out infinite;
  border-radius: var(--radius-md);
}
@keyframes skeleton-sweep {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1875rem 0.5625rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}
.badge.badge-success {
  color: var(--color-success);
  background: var(--color-success-bg);
  border: 1px solid var(--color-success-border);
}
.badge.badge-warning {
  color: var(--color-warning);
  background: var(--color-warning-bg);
  border: 1px solid var(--color-warning-border);
}
.badge.badge-danger {
  color: var(--color-danger);
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger-border);
}
.badge.badge-info {
  color: var(--color-info);
  background: var(--color-info-bg);
  border: 1px solid var(--color-info-border);
}
.badge.badge-brand {
  color: var(--brand-primary);
  background: var(--brand-primary-muted);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 30%, transparent);
}
.badge.badge-neutral {
  color: var(--text-secondary);
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-subtle);
}
.btn,
.btn-warning,
.btn-success,
.btn-danger,
.btn-secondary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  min-height: 34px;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    background var(--ease-fast),
    border-color var(--ease-fast),
    color var(--ease-fast),
    box-shadow var(--ease-fast),
    opacity var(--ease-fast);
}
.btn:disabled,
.btn-warning:disabled,
.btn-success:disabled,
.btn-danger:disabled,
.btn-secondary:disabled,
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn:focus-visible,
.btn-warning:focus-visible,
.btn-success:focus-visible,
.btn-danger:focus-visible,
.btn-secondary:focus-visible,
.btn-primary:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .btn,
  .btn-warning,
  .btn-success,
  .btn-danger,
  .btn-secondary,
  .btn-primary {
    min-height: 44px;
  }
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--brand-primary-hover);
  box-shadow: var(--shadow-glow-brand);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-subtle);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--bg-surface-hover);
  border-color: var(--border-strong);
}
.btn-danger {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border-color: var(--color-danger-border);
}
.btn-danger:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-danger) 16%, transparent);
  border-color: var(--color-danger);
}
.btn-success {
  background: var(--color-success-bg);
  color: var(--color-success);
  border-color: var(--color-success-border);
}
.btn-success:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-success) 16%, transparent);
  border-color: var(--color-success);
}
.btn-warning {
  background: var(--color-warning-bg);
  color: var(--color-warning);
  border-color: var(--color-warning-border);
}
.btn-warning:hover:not(:disabled) {
  background: color-mix(in srgb, var(--color-warning) 16%, transparent);
  border-color: var(--color-warning);
}
.input {
  width: 100%;
  padding: 0.5rem 0.8125rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  min-height: 36px;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.input::placeholder {
  color: var(--text-tertiary);
}
.input:hover {
  border-color: var(--border-strong);
}
.input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-primary-muted);
}
@media (max-width: 767px) {
  .input {
    min-height: 44px;
  }
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.data-table thead th {
  padding: 0.625rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
.data-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--ease-fast);
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table tbody tr:hover {
  background: var(--bg-surface-hover);
}
.data-table tbody td {
  padding: 0.8125rem 1rem;
  color: var(--text-primary);
  vertical-align: middle;
}
.data-table .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.9375em;
}
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-5) var(--sp-6);
}
.section {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 0;
  overflow: hidden;
}
.section h2 {
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-subtle);
  margin: 0;
}
.progress-bar {
  height: 4px;
  background: var(--border-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar .progress-fill {
  height: 100%;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.progress-bar.progress-sm {
  height: 2px;
}
.progress-bar.progress-lg {
  height: 6px;
}
.progress-bar.progress-success .progress-fill {
  background: var(--color-success);
}
.progress-bar.progress-warning .progress-fill {
  background: var(--color-warning);
}
.progress-bar.progress-danger .progress-fill {
  background: var(--color-danger);
}
.empty-state {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
}
.empty-state .empty-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.empty-state .empty-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}
.text-muted {
  color: var(--text-secondary);
}
.text-faint {
  color: var(--text-tertiary);
}
.text-success {
  color: var(--color-success);
}
.text-warning {
  color: var(--color-warning);
}
.text-danger {
  color: var(--color-danger);
}
.text-mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.9375em;
}

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