/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./apps/pryspace/src/styles.scss?ngGlobalStyle ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* PryPro UI tokens: PrySpace uses the same dark-first language as PryZone. */
:root {
  --dynamic-color: 255, 0, 0;
  --dynamic-color-bright: 255, 99, 99;
  --dynamic-color-secondary: 178, 0, 0;
  --dynamic-color-dark: 76, 0, 0;
  --dynamic-img-color: brightness(0) saturate(100%) invert(19%) sepia(98%)
    saturate(5890%) hue-rotate(356deg) brightness(101%) contrast(117%);
  --ui-bg-base: #0c0c0c;
  --ui-surface-panel: rgba(18, 18, 18, 0.88);
  --ui-surface-modal: rgba(18, 18, 18, 0.94);
  --ui-surface-overlay: rgba(16, 16, 16, 0.98);
  --ui-surface-item: rgba(255, 255, 255, 0.03);
  --ui-surface-hover: rgba(255, 255, 255, 0.05);
  --ui-border: rgba(255, 255, 255, 0.08);
  --ui-border-subtle: rgba(255, 255, 255, 0.06);
  --ui-border-strong: rgba(255, 255, 255, 0.12);
  --ui-text-strong: #f4f6f8;
  --ui-text: #e2e8f0;
  --ui-text-soft: #cbd5e1;
  --ui-text-muted: #94a3b8;
  --ui-text-faint: #8f9aa8;
  --ui-success: #2bd96f;
  --ui-info: #39a8ff;
  --ui-warning: #f59e0b;
  --ui-danger: #ff5c5c;
  --ui-violet: #a78bfa;
  --ui-neutral-status: #94a3b8;
  --ui-shadow-panel: inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 22px 52px rgba(0, 0, 0, 0.28);
  --ui-shadow-modal: inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 90px rgba(0, 0, 0, 0.6);
  --ui-glow-accent: 0 0 24px rgba(var(--dynamic-color), 0.12);
  /* Compatibility aliases for the existing MVP feature components. */
  --bg: var(--ui-bg-base);
  --soft: #131313;
  --card: var(--ui-surface-panel);
  --ink: var(--ui-text-strong);
  --muted: var(--ui-text-muted);
  --line: var(--ui-border);
  --accent: rgb(var(--dynamic-color));
  --accent-rgb: var(--dynamic-color);
  --accent-d: rgb(var(--dynamic-color-secondary));
  --accent-br: rgb(var(--dynamic-color-bright));
  --soft-a: rgba(var(--dynamic-color), 0.13);
  --live: var(--ui-success);
  --warn: var(--ui-warning);
  --danger: var(--ui-danger);
  --header-height: 64px;
  --banner-height: 0px;
  --sidebar-width: 256px;
  --sidebar-width-collapsed: 0px;
  --radius-card: 16px;
  --radius-input: 10px;
  --shadow-card: var(--ui-shadow-panel);
  --header-bg: rgba(12, 12, 12, 0.82);
  --header-border: var(--ui-border);
  --sans: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont,
    Roboto, Helvetica, Arial, sans-serif;
  --display: 'Oxanium', 'Arial Narrow', 'Segoe UI', sans-serif;
  --brand: var(--display);
}

html[data-theme=dark] {
  color-scheme: dark;
}

html[data-theme=light] {
  color-scheme: light;
  --ui-bg-base: #f6f4f0;
  --ui-surface-panel: rgba(255, 255, 255, 0.9);
  --ui-surface-modal: rgba(255, 255, 255, 0.96);
  --ui-surface-overlay: rgba(255, 255, 255, 0.98);
  --ui-surface-item: rgba(20, 17, 15, 0.035);
  --ui-surface-hover: rgba(20, 17, 15, 0.06);
  --ui-border: rgba(20, 17, 15, 0.1);
  --ui-border-subtle: rgba(20, 17, 15, 0.07);
  --ui-border-strong: rgba(20, 17, 15, 0.16);
  --ui-text-strong: #14110f;
  --ui-text: #2a2522;
  --ui-text-soft: #514a46;
  --ui-text-muted: #6d6764;
  --ui-text-faint: #817974;
  --ui-success: #209955;
  --ui-danger: #d53b3b;
  --dynamic-color: 212, 34, 30;
  --dynamic-color-bright: 212, 34, 30;
  --dynamic-color-secondary: 160, 22, 19;
  --dynamic-color-dark: 100, 10, 8;
  --bg: var(--ui-bg-base);
  --soft: #efece6;
  --card: var(--ui-surface-panel);
  --ink: var(--ui-text-strong);
  --muted: var(--ui-text-muted);
  --line: var(--ui-border);
  --accent: rgb(var(--dynamic-color));
  --accent-rgb: var(--dynamic-color);
  --accent-d: rgb(var(--dynamic-color-secondary));
  --accent-br: rgb(var(--dynamic-color-bright));
  --soft-a: rgba(var(--dynamic-color), 0.08);
  --header-bg: rgba(246, 244, 240, 0.86);
  --header-border: var(--ui-border);
}

@media (max-width: 400px) {
  :root {
    --header-height: 56px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  isolation: isolate;
  overflow-x: hidden;
  background: var(--ui-bg-base);
  color: var(--ui-text-strong);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  transition: background 180ms ease, color 180ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px), radial-gradient(circle at 92% 4%, rgba(var(--dynamic-color), 0.1), transparent 30%), linear-gradient(135deg, #0c0c0c 0%, #151515 48%, #080808 100%);
  background-size: 80px 80px, 80px 80px, auto, auto;
  content: "";
  pointer-events: none;
}

html[data-theme=light] body::before {
  background: linear-gradient(rgba(20, 17, 15, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 17, 15, 0.035) 1px, transparent 1px), radial-gradient(circle at 92% 4%, rgba(var(--dynamic-color), 0.06), transparent 30%), #f6f4f0;
  background-size: 80px 80px, 80px 80px, auto, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

::selection {
  background: rgb(var(--dynamic-color));
  color: #fff;
}

:where(a, button, input, select, textarea, [role=button], [role=tab], [tabindex]):focus-visible {
  outline: 2px solid rgb(var(--dynamic-color-bright));
  outline-offset: 2px;
  border-radius: 5px;
}

:where(button, input, select, textarea)[disabled],
:where(button, a)[aria-disabled=true],
.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

h1,
h2,
h3,
h4 {
  color: var(--ui-text-strong);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

code,
.mono,
.t-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.app-page {
  display: flex;
  min-height: calc(100vh - 8px);
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 3.5vw, 44px);
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.page-header__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.page-header__title,
.page-title {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.page-header__subtitle,
.muted,
.t-muted,
.ui-muted {
  color: var(--ui-text-muted);
  font-size: 0.88rem;
}

.eyebrow,
.ui-eyebrow {
  color: rgb(var(--dynamic-color));
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.soft {
  background: var(--ui-surface-item);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 700px) {
  .app-page {
    min-height: 100vh;
    padding: 18px 16px 28px;
  }
  .page-header__actions {
    width: 100%;
  }
  .page-header__actions > * {
    flex: 1;
  }
}
.ui-panel,
.card {
  border: 1px solid var(--ui-border);
  border-radius: 16px;
  background: var(--ui-surface-panel);
  box-shadow: var(--ui-shadow-panel);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}

.card {
  padding: 22px;
}

.card-pad {
  padding: clamp(20px, 3vw, 28px);
}

.card.tight,
.ui-panel.tight {
  padding: 16px;
}

.card.flush,
.ui-panel.flush {
  overflow: hidden;
  padding: 0;
}

.card--hover,
.ui-list-item {
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.card--hover:hover,
.ui-list-item:hover {
  border-color: rgba(var(--dynamic-color), 0.35);
  background: var(--ui-surface-hover);
}

.ui-panel-header {
  border-bottom: 1px solid var(--ui-border-subtle);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.ui-section-title {
  color: rgb(var(--dynamic-color));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ui-btn-primary,
.ui-btn-secondary,
.ui-btn-ghost,
.ui-btn-danger,
.btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ui-btn-primary,
.btn-primary {
  border: 1px solid rgba(var(--dynamic-color), 0.42);
  background: rgba(var(--dynamic-color), 0.16);
  color: #fff;
  font-weight: 750;
}

.ui-btn-primary:hover:not(:disabled),
.btn-primary:hover:not(:disabled) {
  background: rgba(var(--dynamic-color), 0.25);
  box-shadow: var(--ui-glow-accent);
  transform: translateY(-1px);
}

.ui-btn-secondary {
  border: 1px solid var(--ui-border);
  background: var(--ui-surface-item);
  color: var(--ui-text-soft);
}

.ui-btn-secondary:hover:not(:disabled) {
  border-color: var(--ui-border-strong);
  background: var(--ui-surface-hover);
  color: var(--ui-text-strong);
}

.ui-btn-ghost,
.btn-ghost {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ui-text-muted);
}

.ui-btn-ghost:hover:not(:disabled),
.btn-ghost:hover:not(:disabled) {
  background: var(--ui-surface-hover);
  color: var(--ui-text-strong);
}

.ui-btn-danger,
.btn-danger {
  border: 1px solid rgba(255, 92, 92, 0.52);
  background: rgba(255, 92, 92, 0.12);
  color: var(--ui-danger);
  font-weight: 750;
}

.ui-btn-danger:hover:not(:disabled),
.btn-danger:hover:not(:disabled) {
  background: rgba(255, 92, 92, 0.2);
  box-shadow: 0 0 24px rgba(255, 92, 92, 0.12);
}

.btn-sm,
.ui-btn-sm {
  min-height: 34px;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 0.76rem;
}

.ui-icon-btn {
  display: inline-flex;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ui-border);
  border-radius: 999px;
  background: var(--ui-surface-item);
  color: var(--ui-text-muted);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.ui-icon-btn:hover {
  border-color: rgba(var(--dynamic-color), 0.42);
  background: rgba(var(--dynamic-color), 0.1);
  color: var(--ui-text-strong);
  box-shadow: var(--ui-glow-accent);
}

.ui-modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.ui-modal-layer {
  position: fixed;
  z-index: 1001;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}

.ui-modal-card {
  display: flex;
  max-height: min(680px, 88vh);
  width: min(720px, 100%);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  background: var(--ui-surface-modal);
  box-shadow: var(--ui-shadow-modal);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  pointer-events: auto;
}

.ui-modal-header,
.ui-modal-footer {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.ui-modal-header {
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--ui-border);
  padding: 18px 20px;
}

.ui-modal-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.ui-modal-footer {
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--ui-border);
  padding: 14px 20px;
}

.ui-input,
.ui-select,
.ui-textarea,
.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--ui-border);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ui-text-strong);
  font-size: 0.86rem;
  padding: 10px 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.ui-input::placeholder,
.ui-textarea::placeholder,
.input::placeholder {
  color: var(--ui-text-faint);
}

.ui-input:focus,
.ui-select:focus,
.ui-textarea:focus,
.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(var(--dynamic-color), 0.58);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(var(--dynamic-color), 0.1);
}

.ui-select,
.select {
  color-scheme: dark;
  cursor: pointer;
}

.ui-select option,
.select option {
  background: #151515;
  color: #f4f6f8;
}

.ui-textarea,
.textarea {
  min-height: 8rem;
  resize: vertical;
}

.ui-field,
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-field-label,
.field > label,
.field-label {
  color: var(--ui-text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ui-field-hint,
.field-hint {
  color: var(--ui-text-muted);
  font-size: 0.74rem;
}

.ui-field-error,
.field-error {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ui-danger);
  font-size: 0.76rem;
}

.ui-search {
  display: flex;
  height: 44px;
  min-width: min(320px, 100%);
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0 14px;
  transition: border-color 180ms ease, background 180ms ease;
}

.ui-search:focus-within {
  border-color: rgba(var(--dynamic-color), 0.58);
  background: rgba(255, 255, 255, 0.055);
}

.ui-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ui-text-strong);
}

.ui-table-shell {
  overflow: auto;
  border: 1px solid var(--ui-border);
  border-radius: 16px;
  background: var(--ui-surface-panel);
  box-shadow: var(--ui-shadow-panel);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}

.ui-table,
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.82rem;
  text-align: left;
}

.ui-table thead,
.table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(18, 18, 18, 0.96);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.ui-table th,
.table th {
  padding: 13px 14px;
  border-bottom: 1px solid var(--ui-border);
  color: var(--ui-text-muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ui-table td,
.table td {
  padding: 14px;
  border-bottom: 1px solid var(--ui-border-subtle);
  color: var(--ui-text);
  vertical-align: middle;
}

.ui-table tbody tr,
.table tbody tr {
  transition: background 180ms ease;
}

.ui-table tbody tr:hover,
.table tbody tr:hover {
  background: var(--ui-surface-hover);
}

.ui-table tbody tr:last-child td,
.table tbody tr:last-child td {
  border-bottom: 0;
}

.ui-chip,
.pill {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--ui-neutral-status);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.25;
  padding: 3px 9px;
  white-space: nowrap;
}

.ui-chip--brand,
.pill:not(.pill--neutral):not(.pill--success):not(.pill--warn) {
  border-color: rgba(var(--dynamic-color), 0.45);
  background: rgba(var(--dynamic-color), 0.12);
  color: rgb(var(--dynamic-color-bright));
}

.ui-chip--success,
.pill--success {
  border-color: rgba(43, 217, 111, 0.48);
  background: rgba(43, 217, 111, 0.1);
  color: var(--ui-success);
}

.ui-chip--info {
  border-color: rgba(57, 168, 255, 0.52);
  background: rgba(57, 168, 255, 0.11);
  color: var(--ui-info);
}

.ui-chip--warning,
.pill--warn {
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(245, 158, 11, 0.12);
  color: var(--ui-warning);
}

.ui-chip--danger {
  border-color: rgba(255, 92, 92, 0.52);
  background: rgba(255, 92, 92, 0.11);
  color: var(--ui-danger);
}

.ui-chip--violet {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(167, 139, 250, 0.11);
  color: var(--ui-violet);
}

.ui-chip--neutral,
.pill--neutral {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(148, 163, 184, 0.1);
  color: var(--ui-neutral-status);
}

.ui-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--ui-border);
  border-radius: 999px;
  background: var(--ui-surface-item);
  color: var(--ui-text-soft);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  padding: 0 13px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ui-pill:hover {
  border-color: rgba(var(--dynamic-color), 0.3);
  background: rgba(var(--dynamic-color), 0.1);
  color: var(--ui-text-strong);
}

.ui-alert,
.alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: var(--ui-surface-item);
  color: var(--ui-text-soft);
  font-size: 0.82rem;
  padding: 12px 14px;
}

.ui-alert--danger,
.alert--error {
  border-color: rgba(255, 92, 92, 0.5);
  background: rgba(255, 92, 92, 0.1);
  color: var(--ui-danger);
}

.ui-alert--success,
.alert--success {
  border-color: rgba(43, 217, 111, 0.5);
  background: rgba(43, 217, 111, 0.1);
  color: var(--ui-success);
}

.ui-empty,
.empty-state {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 16px;
  color: var(--ui-text-muted);
  text-align: center;
}

.ui-empty-icon,
.empty-state .material-symbols-outlined {
  color: var(--ui-text-faint);
  font-size: 36px;
}

.ui-empty-title {
  color: var(--ui-text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.ui-empty-text {
  color: var(--ui-text-muted);
  font-size: 0.76rem;
}

.ui-skeleton {
  position: relative;
  overflow: hidden;
  min-height: 18px;
  border: 1px solid var(--ui-border-subtle);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.ui-skeleton::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  content: "";
  transform: translateX(-100%);
  animation: ui-shimmer 1.6s ease infinite;
}

.ui-spinner {
  display: inline-block;
  height: 14px;
  width: 14px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  border-top-color: #fff;
  animation: ui-spin 0.8s linear infinite;
}

.ui-kbd {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ui-border-strong);
  border-radius: 6px;
  background: var(--ui-surface-item);
  color: var(--ui-text-faint);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
}

.ui-list-item {
  display: flex;
  gap: 12px;
  border: 1px solid var(--ui-border-subtle);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 14px;
}

.ui-list-icon {
  display: inline-flex;
  height: 34px;
  width: 34px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--dynamic-color), 0.28);
  border-radius: 10px;
  background: rgba(var(--dynamic-color), 0.1);
  color: rgb(var(--dynamic-color));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.stat-card {
  position: relative;
  display: flex;
  min-height: 142px;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--ui-border);
  border-radius: 16px;
  background: var(--ui-surface-panel);
  color: var(--ui-text-strong);
  padding: 18px;
  box-shadow: var(--ui-shadow-panel);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.stat-card::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 95% 8%, currentColor, transparent 38%);
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

.stat-card:hover {
  border-color: currentColor;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.stat-card--brand {
  color: rgb(var(--dynamic-color-bright));
}

.stat-card--green {
  color: var(--ui-success);
}

.stat-card--blue {
  color: var(--ui-info);
}

.stat-card--violet {
  color: var(--ui-violet);
}

.stat-card-top,
.stat-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stat-card-kicker {
  color: var(--ui-text-muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stat-card-icon {
  display: inline-flex;
  height: 34px;
  width: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-card-value {
  position: relative;
  z-index: 1;
  color: var(--ui-text-strong);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-card-copy {
  color: var(--ui-text-muted);
  font-size: 0.74rem;
}

.stat-card-link-icon {
  color: currentColor;
  font-size: 1.1rem;
}

.center-pane {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: clamp(28px, 4vw, 40px);
}

.app-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack-sm {
  gap: 8px;
}

.stack-md {
  gap: 16px;
}

.stack-lg {
  gap: 24px;
}

@keyframes ui-shimmer {
  to {
    transform: translateX(100%);
  }
}
@keyframes ui-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .stat-card:hover,
  .ui-btn-primary:hover,
  .btn-primary:hover {
    transform: none;
  }
}
@media (max-width: 700px) {
  .ui-search {
    min-width: 0;
  }
  .page-header__actions > * {
    flex: 1;
  }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: var(--sans); /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.isolate {
  isolation: isolate;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.flex-shrink {
  flex-shrink: 1;
}
.border-collapse {
  border-collapse: collapse;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.flex-wrap {
  flex-wrap: wrap;
}
.border {
  border-width: 1px;
}
.uppercase {
  text-transform: uppercase;
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.outline {
  outline-style: solid;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.sepia {
  --tw-sepia: sepia(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/*!***********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/material-symbols/index.css?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('material-symbols-outlined.woff2') format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('material-symbols-rounded.woff2') format("woff2");
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

@font-face {
  font-family: "Material Symbols Sharp";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('material-symbols-sharp.woff2') format("woff2");
}
.material-symbols-sharp {
  font-family: "Material Symbols Sharp";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}


/*# sourceMappingURL=styles.css.map*/