/* node_modules/driver.js/dist/driver.css */
.driver-popover {
  all: unset;
  font-family: var(--driver-popover-font-family,"Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif);
  box-sizing: border-box;
  color: #2d2d2d;
  z-index: 1000000000;
  background-color: #fff;
  border-radius: 5px;
  min-width: 250px;
  max-width: 300px;
  margin: 0;
  padding: 15px;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0 1px 10px #0006;
}
.driver-popover-title {
  zoom: 1;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  position: relative;
}
.driver-popover-close-btn {
  all: unset;
  cursor: pointer;
  color: #d2d2d2;
  z-index: 1;
  text-align: center;
  width: 32px;
  height: 28px;
  font-size: 18px;
  font-weight: 500;
  transition: color .2s;
  position: absolute;
  top: 0;
  right: 0;
}
.driver-popover-close-btn:hover,
.driver-popover-close-btn:focus {
  color: #2d2d2d;
}
.driver-popover-title[style*=block] + .driver-popover-description {
  margin-top: 5px;
}
.driver-popover-description {
  zoom: 1;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.driver-popover-footer {
  text-align: right;
  zoom: 1;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  display: flex;
}
.driver-popover-progress-text {
  color: #727272;
  zoom: 1;
  font-size: 13px;
  font-weight: 400;
}
.driver-popover-footer-btn {
  all: unset;
  box-sizing: border-box;
  color: #2d2d2d;
  cursor: pointer;
  zoom: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: 0;
  padding: 3px 7px;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
  display: inline-block;
}
.driver-popover-footer .driver-popover-btn-disabled {
  opacity: .5;
  pointer-events: none;
}
.driver-popover-footer-btn:hover,
.driver-popover-footer-btn:focus {
  background-color: #f7f7f7;
}
.driver-popover-navigation-btns {
  flex-grow: 1;
  justify-content: flex-end;
  display: flex;
}
.driver-popover-navigation-btns button + button {
  margin-left: 4px;
}
.driver-popover-arrow {
  content: "";
  border: 5px solid #fff;
  position: absolute;
}
.driver-popover-arrow-side-over {
  display: none;
}
.driver-popover-arrow-side-left {
  border-top-color: #0000;
  border-bottom-color: #0000;
  border-right-color: #0000;
  left: 100%;
}
.driver-popover-arrow-side-right {
  border-top-color: #0000;
  border-bottom-color: #0000;
  border-left-color: #0000;
  right: 100%;
}
.driver-popover-arrow-side-top {
  border-bottom-color: #0000;
  border-left-color: #0000;
  border-right-color: #0000;
  top: 100%;
}
.driver-popover-arrow-side-bottom {
  border-top-color: #0000;
  border-left-color: #0000;
  border-right-color: #0000;
  bottom: 100%;
}
.driver-popover-arrow-side-center,
.driver-popover-arrow-none {
  display: none;
}
.driver-active .driver-overlay {
  pointer-events: none;
}
.driver-active.driver-no-scroll {
  overflow: hidden;
}
.driver-active * {
  pointer-events: none;
}
.driver-active .driver-active-element,
.driver-active .driver-active-element *,
.driver-popover,
.driver-popover * {
  pointer-events: auto;
}
@keyframes animate-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.driver-fade .driver-overlay {
  animation: animate-fade-in var(--driver-animation-duration,.4s) ease-in-out;
}
.driver-fade .driver-popover {
  animation: animate-fade-in var(--driver-animation-duration,.4s);
}
.driver-active-element-parent-no-scroll {
  overflow: hidden !important;
}
.driver-no-interaction,
.driver-no-interaction * {
  pointer-events: none !important;
}

/* src/styles.scss */
:root {
  --brand-50:#eff6ff;
  --brand-100:#dbeafe;
  --brand-200:#bfdbfe;
  --brand-300:#93c5fd;
  --brand-400:#60a5fa;
  --brand-500:#3b82f6;
  --brand-600:#2563eb;
  --brand-700:#1d4ed8;
  --brand-800:#1e40af;
  --brand-900:#1e3a8a;
  --sidebar-bg:#0f172a;
  --sidebar-hover:#1e293b;
  --sidebar-active:rgba(37,99,235,.18);
  --sidebar-fg:#94a3b8;
  --sidebar-fg-strong:#f8fafc;
  --sidebar-section:#64748b;
  --sidebar-border:#1e293b;
  --surface:#ffffff;
  --surface-muted:#f4f7fa;
  --surface-border:#e2e8f0;
  --content-fg:#172033;
  --content-muted:#64748b;
  --success:#16a34a;
  --success-bg:#dcfce7;
  --warning:#f59e0b;
  --warning-bg:#fef3c7;
  --danger:#dc2626;
  --danger-bg:#fee2e2;
  --info:#2563eb;
  --info-bg:#dbeafe;
  --neutral:#64748b;
  --neutral-bg:#eef2f6;
  --sp-1:4px;
  --sp-2:8px;
  --sp-3:12px;
  --sp-4:16px;
  --sp-5:20px;
  --sp-6:24px;
  --sp-8:32px;
  --sp-10:40px;
  --sp-12:48px;
  --r-field:10px;
  --r-card:14px;
  --r-card-lg:16px;
  --r-pill:999px;
  --shadow-clay-sm:0 1px 2px rgba(15,23,42,.06);
  --shadow-clay:0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow-clay-hover:0 4px 12px rgba(15,23,42,.10), 0 2px 4px rgba(15,23,42,.06);
  --shadow-clay-inset:inset 0 0 0 1px var(--surface-border);
  --shadow-card:var(--shadow-clay);
  --shadow-card-hover:var(--shadow-clay-hover);
  --shadow-pop:var(--shadow-clay-hover);
  --sidebar-w:264px;
  --sidebar-w-collapsed:76px;
  --header-h:64px;
}
:root[data-theme=dark] {
  --surface:#141a2b;
  --surface-muted:#0b0f1a;
  --surface-border:#263047;
  --content-fg:#e7ecf5;
  --content-muted:#94a3b8;
  --success-bg:#052e16;
  --warning-bg:#3b2f0a;
  --danger-bg:#3b0d0d;
  --info-bg:#0b2447;
  --neutral-bg:#1a2235;
  --shadow-clay-sm:0 1px 2px rgba(0,0,0,.35);
  --shadow-clay:0 2px 6px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  --shadow-clay-hover:0 6px 16px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.35);
}
:root {
  --font-sans:"Inter","Roboto",system-ui,-apple-system,sans-serif;
  --font-display:"Inter","Roboto",system-ui,-apple-system,sans-serif;
}
.text-display {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.text-h1 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.text-h2 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}
.text-h3 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
}
.text-body {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
.text-small {
  font-size: 13px;
  line-height: 18px;
}
.text-caption {
  font-size: 12px;
  line-height: 16px;
  color: var(--content-muted);
}
.num-tabular {
  font-variant-numeric: tabular-nums;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.grow {
  flex-grow: 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));
}
.border {
  border-width: 1px;
}
.p-1 {
  padding: 0.25rem;
}
.uppercase {
  text-transform: uppercase;
}
.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);
}
.\!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) !important;
}
.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);
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    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);
}
html {
  color-scheme: light dark;
  --mat-sys-background: light-dark(#fcf8fd, #131316);
  --mat-sys-error: light-dark(#ba1a1a, #ffb4ab);
  --mat-sys-error-container: light-dark(#ffdad6, #93000a);
  --mat-sys-inverse-on-surface: light-dark(#f3eff4, #303034);
  --mat-sys-inverse-primary: light-dark(#bec2ff, #343dff);
  --mat-sys-inverse-surface: light-dark(#303034, #e5e1e6);
  --mat-sys-on-background: light-dark(#1b1b1f, #e5e1e6);
  --mat-sys-on-error: light-dark(#ffffff, #690005);
  --mat-sys-on-error-container: light-dark(#93000a, #ffdad6);
  --mat-sys-on-primary: light-dark(#ffffff, #0001ac);
  --mat-sys-on-primary-container: light-dark(#0000ef, #e0e0ff);
  --mat-sys-on-primary-fixed: light-dark(#00006e, #00006e);
  --mat-sys-on-primary-fixed-variant: light-dark(#0000ef, #0000ef);
  --mat-sys-on-secondary: light-dark(#ffffff, #2e2f42);
  --mat-sys-on-secondary-container: light-dark(#444559, #e1e0f9);
  --mat-sys-on-secondary-fixed: light-dark(#191a2c, #191a2c);
  --mat-sys-on-secondary-fixed-variant: light-dark(#444559, #444559);
  --mat-sys-on-surface: light-dark(#1b1b1f, #e5e1e6);
  --mat-sys-on-surface-variant: light-dark(#46464f, #e4e1ec);
  --mat-sys-on-tertiary: light-dark(#ffffff, #502400);
  --mat-sys-on-tertiary-container: light-dark(#723600, #ffdcc7);
  --mat-sys-on-tertiary-fixed: light-dark(#311300, #311300);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#723600, #723600);
  --mat-sys-outline: light-dark(#777680, #91909a);
  --mat-sys-outline-variant: light-dark(#c7c5d0, #46464f);
  --mat-sys-primary: light-dark(#343dff, #bec2ff);
  --mat-sys-primary-container: light-dark(#e0e0ff, #0000ef);
  --mat-sys-primary-fixed: light-dark(#e0e0ff, #e0e0ff);
  --mat-sys-primary-fixed-dim: light-dark(#bec2ff, #bec2ff);
  --mat-sys-scrim: light-dark(#000000, #000000);
  --mat-sys-secondary: light-dark(#5c5d72, #c5c4dd);
  --mat-sys-secondary-container: light-dark(#e1e0f9, #444559);
  --mat-sys-secondary-fixed: light-dark(#e1e0f9, #e1e0f9);
  --mat-sys-secondary-fixed-dim: light-dark(#c5c4dd, #c5c4dd);
  --mat-sys-shadow: light-dark(#000000, #000000);
  --mat-sys-surface: light-dark(#fcf8fd, #131316);
  --mat-sys-surface-bright: light-dark(#fcf8fd, #3a393c);
  --mat-sys-surface-container: light-dark(#f0edf1, #201f22);
  --mat-sys-surface-container-high: light-dark(#ebe7eb, #2a292d);
  --mat-sys-surface-container-highest: light-dark(#e5e1e6, #353438);
  --mat-sys-surface-container-low: light-dark(#f6f2f7, #1b1b1f);
  --mat-sys-surface-container-lowest: light-dark(#ffffff, #0e0e11);
  --mat-sys-surface-dim: light-dark(#dcd9dd, #131316);
  --mat-sys-surface-tint: light-dark(#343dff, #bec2ff);
  --mat-sys-surface-variant: light-dark(#e4e1ec, #46464f);
  --mat-sys-tertiary: light-dark(#964900, #ffb787);
  --mat-sys-tertiary-container: light-dark(#ffdcc7, #723600);
  --mat-sys-tertiary-fixed: light-dark(#ffdcc7, #ffdcc7);
  --mat-sys-tertiary-fixed-dim: light-dark(#ffb787, #ffb787);
  --mat-sys-neutral-variant20: #303038;
  --mat-sys-neutral10: #1b1b1f;
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-sys-body-large: 400 1rem / 1.5rem Inter;
  --mat-sys-body-large-font: Inter;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Inter;
  --mat-sys-body-medium-font: Inter;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Inter;
  --mat-sys-body-small-font: Inter;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Inter;
  --mat-sys-display-large-font: Inter;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Inter;
  --mat-sys-display-medium-font: Inter;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Inter;
  --mat-sys-display-small-font: Inter;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Inter;
  --mat-sys-headline-large-font: Inter;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Inter;
  --mat-sys-headline-medium-font: Inter;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Inter;
  --mat-sys-headline-small-font: Inter;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Inter;
  --mat-sys-label-large-font: Inter;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Inter;
  --mat-sys-label-medium-font: Inter;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Inter;
  --mat-sys-label-small-font: Inter;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Inter;
  --mat-sys-title-large-font: Inter;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Inter;
  --mat-sys-title-medium-font: Inter;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Inter;
  --mat-sys-title-small-font: Inter;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-checkbox-touch-target-display: block;
  --mat-checkbox-state-layer-size: 36px;
  --mat-chip-container-height: 28px;
  --mat-expansion-header-collapsed-state-height: 44px;
  --mat-expansion-header-expanded-state-height: 60px;
  --mat-fab-small-touch-target-display: ;
  --mat-fab-touch-target-display: block;
  --mat-button-filled-touch-target-display: block;
  --mat-button-filled-container-height: 36px;
  --mat-button-outlined-container-height: 36px;
  --mat-button-outlined-touch-target-display: block;
  --mat-button-protected-touch-target-display: block;
  --mat-button-protected-container-height: 36px;
  --mat-button-text-touch-target-display: block;
  --mat-button-text-container-height: 36px;
  --mat-button-tonal-container-height: 36px;
  --mat-button-tonal-touch-target-display: block;
  --mat-form-field-container-height: 52px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 14px;
  --mat-form-field-filled-with-label-container-padding-top: 22px;
  --mat-form-field-filled-with-label-container-padding-bottom: 6px;
  --mat-icon-button-touch-target-display: block;
  --mat-icon-button-state-layer-size: 36px;
  --mat-list-list-item-leading-icon-start-space: 12px;
  --mat-list-list-item-leading-icon-end-space: 12px;
  --mat-list-list-item-one-line-container-height: 44px;
  --mat-list-list-item-two-line-container-height: 60px;
  --mat-list-list-item-three-line-container-height: 84px;
  --mat-paginator-container-size: 52px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
  --mat-radio-touch-target-display: block;
  --mat-radio-state-layer-size: 36px;
  --mat-tab-container-height: 44px;
  --mat-select-arrow-transform: translateY(-8px);
  --mat-button-toggle-height: 40px;
  --mat-stepper-header-height: 68px;
  --mat-table-header-container-height: 52px;
  --mat-table-footer-container-height: 48px;
  --mat-table-row-item-container-height: 48px;
  --mat-toolbar-standard-height: 60px;
  --mat-toolbar-mobile-height: 52px;
  --mat-tree-node-min-height: 44px;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
html[data-theme=light] {
  color-scheme: light;
}
html[data-theme=dark] {
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: var(--font-sans);
  background: var(--surface-muted);
  color: var(--content-fg);
  -webkit-font-smoothing: antialiased;
}
.app-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-clay);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.clay-surface {
  background: var(--surface);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-clay);
}
.clay-inset {
  background: var(--surface-muted);
  border-radius: var(--r-field);
  box-shadow: var(--shadow-clay-inset);
}
.illustration-frame {
  display: grid;
  place-items: center;
  padding: var(--sp-4);
  border-radius: var(--r-card-lg);
  background:
    linear-gradient(
      160deg,
      var(--brand-50),
      var(--surface));
  box-shadow: var(--shadow-clay);
}
:root[data-theme=dark] .illustration-frame {
  background:
    linear-gradient(
      160deg,
      var(--brand-900),
      var(--surface));
}
@media (prefers-reduced-motion: reduce) {
  .app-card,
  .clay-surface,
  .clay-inset {
    transition: none;
  }
}
.page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.page__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page__head-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page__head-ill {
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .page__head-ill {
    display: none;
  }
}
.tbl tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--surface-border);
  color: var(--content-fg);
}
.app-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.app-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.5);
  border-radius: 999px;
}
.mat-mdc-menu-panel {
  border-radius: var(--r-card) !important;
  box-shadow: var(--shadow-clay-hover) !important;
}
.app-dialog .mdc-dialog__surface {
  border-radius: var(--r-card-lg) !important;
  box-shadow: var(--shadow-clay-hover) !important;
}
.toast-success {
  --mdc-snackbar-container-color: var(--success);
}
.toast-info {
  --mdc-snackbar-container-color: var(--info);
}
.toast-error {
  --mdc-snackbar-container-color: var(--danger);
}
.cs-tour {
  background: var(--surface);
  color: var(--content-fg);
  border: 1px solid var(--surface-border);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card-hover);
  padding: 18px 20px;
  max-width: 320px;
  font-family: var(--font-sans);
}
.cs-tour .driver-popover-title {
  font: 700 16px var(--font-sans);
  color: var(--content-fg);
}
.cs-tour .driver-popover-description {
  margin-top: 6px;
  font: 400 13px/1.5 var(--font-sans);
  color: var(--content-muted);
}
.cs-tour .driver-popover-close-btn {
  color: var(--content-muted);
  font-size: 16px;
}
.cs-tour .driver-popover-close-btn:hover {
  color: var(--content-fg);
}
.cs-tour .driver-popover-footer {
  margin-top: 16px;
}
.cs-tour .driver-popover-progress-text {
  font: 500 12px var(--font-sans);
  color: var(--content-muted);
}
.cs-tour .driver-popover-footer-btn {
  border-radius: var(--r-field);
  padding: 6px 14px;
  font: 600 12px var(--font-sans);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--content-fg);
}
.cs-tour .driver-popover-footer-btn:hover {
  background: var(--surface-muted);
}
.cs-tour .driver-popover-next-btn,
.cs-tour .driver-popover-done-btn {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}
.cs-tour .driver-popover-next-btn:hover,
.cs-tour .driver-popover-done-btn:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}
.cs-tour .driver-popover-arrow-side-left {
  border-left-color: var(--surface) !important;
}
.cs-tour .driver-popover-arrow-side-right {
  border-right-color: var(--surface) !important;
}
.cs-tour .driver-popover-arrow-side-top {
  border-top-color: var(--surface) !important;
}
.cs-tour .driver-popover-arrow-side-bottom {
  border-bottom-color: var(--surface) !important;
}

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