/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!../../packages/ui/src/tokens.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --color-bg: #f6f6f8;
  --color-surface: #ffffff;
  --color-surface-sunken: #f0f0f3;
  --color-border: #e2e2e7;
  --color-border-strong: #cfcfd6;
  --color-text: #16171c;
  --color-text-muted: #6a6c76;
  --color-text-faint: #96979f;

  --color-accent: #2f5ce0;
  --color-accent-hover: #2648b8;
  --color-accent-soft: #eaefff;
  --color-accent-soft-border: #c9d6fb;

  --color-success: #1c7d43;
  --color-success-soft: #e5f5ea;
  --color-warning: #a86308;
  --color-warning-soft: #fbf0dc;
  --color-danger: #b32424;
  --color-danger-soft: #fbe9e9;
  --color-neutral-soft: #eceef1;

  --sidebar-bg: #121317;
  --sidebar-border: #24262c;
  --sidebar-text: #c3c5cd;
  --sidebar-text-muted: #7b7d87;
  --sidebar-text-active: #ffffff;
  --sidebar-active-bg: #1d1f26;

  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(12, 13, 18, 0.06);
  --shadow-md: 0 4px 16px rgba(12, 13, 18, 0.08);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
/* Same internal-only accent as the Platform Owner Console — this app is now
   platform-staff-only too, and should look like it at a glance. */
:root {
  --color-accent: #b3491f;
  --color-accent-hover: #963d19;
  --color-accent-soft: #fbece3;
  --color-accent-soft-border: #f0c7ac;
}

.pageHeader {
  margin-bottom: 24px;
}

.pageHeaderTitle {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.pageHeaderSubtitle {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.grid {
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spread {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.textMuted {
  color: var(--color-text-muted);
}

