/**
 * Shared UI CSS variables
 *
 * This file defines semantic CSS variables for the shared UI layer.
 */

/* Define variables in :root with importance to override any global styles */
:root {
  /* Base colors — semantic grayscale system */
  --background: var(--ui-color-gray-50) !important;
  --foreground: var(--ui-text-primary) !important;

  --muted: var(--ui-surface-muted) !important;
  --muted-foreground: var(--ui-text-tertiary) !important;

  --popover: var(--ui-surface-elevated) !important;
  --popover-foreground: var(--ui-text-primary) !important;

  --card: var(--ui-surface-panel) !important;
  --card-foreground: var(--ui-text-primary) !important;

  --border: var(--ui-border) !important;
  --input: var(--ui-border) !important;

  --primary: var(--ui-surface-inverse) !important;
  --primary-foreground: var(--ui-text-inverse) !important;
  --primary-hover: var(--ui-surface-inverse-hover) !important;

  --secondary: var(--ui-surface-muted) !important;
  --secondary-foreground: var(--ui-text-primary) !important;
  --secondary-hover: var(--ui-surface-inset) !important;

  /* Keeping brand color for accent */
  --accent: #D32446 !important;
  --accent-foreground: #ffffff !important;
  --accent-hover: #b71a3a !important;

  --destructive: var(--ui-status-error-solid) !important;
  --destructive-foreground: var(--ui-status-error-solid-text) !important;
  --destructive-hover: #864f58 !important;

  --success: var(--ui-status-success-solid) !important;
  --success-foreground: var(--ui-status-success-solid-text) !important;
  --warning: var(--ui-status-warning-solid) !important;
  --warning-foreground: var(--ui-status-warning-solid-text) !important;
  --info: var(--ui-status-info-solid) !important;
  --info-foreground: var(--ui-status-info-solid-text) !important;

  --ring: var(--ui-focus-ring-strong) !important;

  /* Shared UI radius variables */
  --radius: 0.5rem !important;

  /* Override any existing button hover styles in global CSS */
  --btn-bg-color-hover: var(--primary-hover) !important;
  --button-primary-background-hover: #404040 !important;
  --button-secondary-background-hover: #e5e5e5 !important;
  --button-tertiary-background-hover: #404040 !important;
  --button-tertiary-border-hover: #b71a3a !important;
  --button-destructive-hover: #994E55 !important;

  /* BlackAlpha scale */
  --ui-color-black-alpha-50: rgba(0, 0, 0, 0.04) !important;
  --ui-color-black-alpha-100: rgba(0, 0, 0, 0.06) !important;
  --ui-color-black-alpha-200: rgba(0, 0, 0, 0.08) !important;
  --ui-color-black-alpha-300: rgba(0, 0, 0, 0.16) !important;
  --ui-color-black-alpha-400: rgba(0, 0, 0, 0.24) !important;
  --ui-color-black-alpha-500: rgba(0, 0, 0, 0.36) !important;
  --ui-color-black-alpha-600: rgba(0, 0, 0, 0.48) !important;
  --ui-color-black-alpha-700: rgba(0, 0, 0, 0.64) !important;
  --ui-color-black-alpha-800: rgba(0, 0, 0, 0.80) !important;
  --ui-color-black-alpha-900: rgba(0, 0, 0, 0.92) !important;

  /* WhiteAlpha scale */
  --ui-color-white-alpha-50: rgba(255, 255, 255, 0.04) !important;
  --ui-color-white-alpha-100: rgba(255, 255, 255, 0.06) !important;
  --ui-color-white-alpha-200: rgba(255, 255, 255, 0.08) !important;
  --ui-color-white-alpha-300: rgba(255, 255, 255, 0.16) !important;
  --ui-color-white-alpha-400: rgba(255, 255, 255, 0.24) !important;
  --ui-color-white-alpha-500: rgba(255, 255, 255, 0.36) !important;
  --ui-color-white-alpha-600: rgba(255, 255, 255, 0.48) !important;
  --ui-color-white-alpha-700: rgba(255, 255, 255, 0.64) !important;
  --ui-color-white-alpha-800: rgba(255, 255, 255, 0.80) !important;
  --ui-color-white-alpha-900: rgba(255, 255, 255, 0.92) !important;

  /* UI color scales - zinc-based grays */
  --ui-color-gray-50: #fafafa !important;
  --ui-color-gray-100: #f4f4f5 !important;
  --ui-color-gray-200: #e4e4e7 !important;
  --ui-color-gray-300: #d4d4d8 !important;
  --ui-color-gray-400: #a1a1aa !important;
  --ui-color-gray-500: #71717a !important;
  --ui-color-gray-600: #52525b !important;
  --ui-color-gray-700: #3f3f46 !important;
  --ui-color-gray-800: #27272a !important;
  --ui-color-gray-900: #18181b !important;
  --ui-color-blue-50: #f3f6fa !important;
  --ui-color-blue-100: #e1e8f0 !important;
  --ui-color-blue-200: #c5d2e0 !important;
  --ui-color-blue-300: #a3b4c8 !important;
  --ui-color-blue-400: #8198af !important;
  --ui-color-blue-500: #607d96 !important;
  --ui-color-blue-600: #4c667d !important;
  --ui-color-blue-700: #3a5065 !important;
  --ui-color-blue-800: #2b3d4e !important;
  --ui-color-blue-900: #1d2d3b !important;
  --ui-color-brand-500: #D32446 !important;
  --ui-color-brand-600: #b71a3a !important;
  --ui-color-brand-hover: #b71a3a !important;
  --ui-color-purple-500: var(--purple-500) !important;
  --ui-color-red-500: #BF616A !important;
  --ui-color-red-600: #994E55 !important;

  /* Green scale — desaturated sage */
  --ui-color-green-50: #f3f6f1 !important;
  --ui-color-green-100: #e3eadc !important;
  --ui-color-green-200: #d0dbc8 !important;
  --ui-color-green-300: #b8c8ae !important;
  --ui-color-green-400: #9fb493 !important;
  --ui-color-green-500: #849778 !important;
  --ui-color-green-600: #6b7a61 !important;
  --ui-color-green-700: #53604c !important;
  --ui-color-green-800: #3c4638 !important;
  --ui-color-green-900: #252b24 !important;

  /* Orange scale — restrained amber */
  --ui-color-orange-50: #faf6ed !important;
  --ui-color-orange-100: #f3ead8 !important;
  --ui-color-orange-200: #e7d5b3 !important;
  --ui-color-orange-300: #d8bc87 !important;
  --ui-color-orange-400: #c59f61 !important;
  --ui-color-orange-500: #ad8346 !important;
  --ui-color-orange-600: #8d6736 !important;
  --ui-color-orange-700: #6c4e29 !important;
  --ui-color-orange-800: #4f391f !important;
  --ui-color-orange-900: #312313 !important;

  /* Brand button specifics */
  --ui-color-telegram-500: #D32446 !important;
  --ui-color-telegram-600: #b71a3a !important;
  --ui-color-telegram-hover: #b71a3a !important;
  --ui-color-blue-hover: #4c667d !important;
}

/* Dark mode is activated when the .dark class is applied to html */
html.dark {
  --background: var(--ui-color-gray-50) !important;
  --foreground: var(--ui-text-primary) !important;

  --muted: var(--ui-surface-muted) !important;
  --muted-foreground: var(--ui-text-tertiary) !important;

  --popover: var(--ui-surface-elevated) !important;
  --popover-foreground: var(--ui-text-primary) !important;

  --card: var(--ui-surface-panel) !important;
  --card-foreground: var(--ui-text-primary) !important;

  --border: var(--ui-border) !important;
  --input: var(--ui-border) !important;

  --primary: var(--ui-surface-inverse) !important;
  --primary-foreground: var(--ui-text-inverse) !important;
  --primary-hover: var(--ui-surface-inverse-hover) !important;

  --secondary: var(--ui-surface-muted) !important;
  --secondary-foreground: var(--ui-text-primary) !important;
  --secondary-hover: var(--ui-surface-inset) !important;

  /* Keeping brand color for accent */
  --accent: #D32446 !important;
  --accent-foreground: #ffffff !important;
  --accent-hover: #b71a3a !important;

  --destructive: var(--ui-status-error-solid) !important;
  --destructive-foreground: var(--ui-status-error-solid-text) !important;
  --destructive-hover: #e8c8cf !important;

  --success: var(--ui-status-success-solid) !important;
  --success-foreground: var(--ui-status-success-solid-text) !important;
  --warning: var(--ui-status-warning-solid) !important;
  --warning-foreground: var(--ui-status-warning-solid-text) !important;
  --info: var(--ui-status-info-solid) !important;
  --info-foreground: var(--ui-status-info-solid-text) !important;

  --ring: var(--ui-focus-ring-strong) !important;

  /* Override any existing button hover styles in global CSS */
  --btn-bg-color-hover: var(--primary-hover) !important;
  --button-primary-background-hover: #e5e5e5 !important;
  --button-secondary-background-hover: #737373 !important;
  --button-tertiary-background-hover: #e5e5e5 !important;
  --button-tertiary-border-hover: #b71a3a !important;
  --button-destructive-hover: #994E55 !important;

  /* Invert blackAlpha for dark mode */
  --ui-color-black-alpha-50: rgba(255, 255, 255, 0.04) !important;
  --ui-color-black-alpha-100: rgba(255, 255, 255, 0.06) !important;
  --ui-color-black-alpha-200: rgba(255, 255, 255, 0.08) !important;
  --ui-color-black-alpha-300: rgba(255, 255, 255, 0.16) !important;
  --ui-color-black-alpha-400: rgba(255, 255, 255, 0.24) !important;
  --ui-color-black-alpha-500: rgba(255, 255, 255, 0.36) !important;
  --ui-color-black-alpha-600: rgba(255, 255, 255, 0.48) !important;
  --ui-color-black-alpha-700: rgba(255, 255, 255, 0.64) !important;
  --ui-color-black-alpha-800: rgba(255, 255, 255, 0.80) !important;
  --ui-color-black-alpha-900: rgba(255, 255, 255, 0.92) !important;

  /* Invert whiteAlpha for dark mode */
  --ui-color-white-alpha-50: rgba(0, 0, 0, 0.04) !important;
  --ui-color-white-alpha-100: rgba(0, 0, 0, 0.06) !important;
  --ui-color-white-alpha-200: rgba(0, 0, 0, 0.08) !important;
  --ui-color-white-alpha-300: rgba(0, 0, 0, 0.16) !important;
  --ui-color-white-alpha-400: rgba(0, 0, 0, 0.24) !important;
  --ui-color-white-alpha-500: rgba(0, 0, 0, 0.36) !important;
  --ui-color-white-alpha-600: rgba(0, 0, 0, 0.48) !important;
  --ui-color-white-alpha-700: rgba(0, 0, 0, 0.64) !important;
  --ui-color-white-alpha-800: rgba(0, 0, 0, 0.80) !important;
  --ui-color-white-alpha-900: rgba(0, 0, 0, 0.92) !important;

  /* Invert UI color tokens for dark mode (zinc-based) */
  --ui-color-white: #0a0a0a !important;
  --ui-color-black: #fafafa !important;
  --ui-color-gray-50: #18181b !important;
  --ui-color-gray-100: #1c1c1f !important;
  --ui-color-gray-200: #27272a !important;
  --ui-color-gray-300: #3f3f46 !important;
  --ui-color-gray-400: #52525b !important;
  --ui-color-gray-500: #71717a !important;
  --ui-color-gray-600: #a1a1aa !important;
  --ui-color-gray-700: #d4d4d8 !important;
  --ui-color-gray-800: #e4e4e7 !important;
  --ui-color-gray-900: #fafafa !important;

  /* Blue scale inversion */
  --ui-color-blue-50: #1d2d3b !important;
  --ui-color-blue-100: #2b3d4e !important;
  --ui-color-blue-200: #3a5065 !important;
  --ui-color-blue-300: #4c667d !important;
  --ui-color-blue-400: #607d96 !important;
  --ui-color-blue-500: #8198af !important;
  --ui-color-blue-600: #a3b4c8 !important;
  --ui-color-blue-700: #c5d2e0 !important;
  --ui-color-blue-800: #e1e8f0 !important;
  --ui-color-blue-900: #f3f6fa !important;

  --ui-color-brand-500: #D32446 !important;
  --ui-color-brand-600: #b71a3a !important;
  --ui-color-brand-hover: #b71a3a !important;
  --ui-color-red-500: #BF616A !important;
  --ui-color-red-600: #994E55 !important;

  /* Green scale inverted for dark mode */
  --ui-color-green-50: #252b24 !important;
  --ui-color-green-100: #3c4638 !important;
  --ui-color-green-200: #53604c !important;
  --ui-color-green-300: #6b7a61 !important;
  --ui-color-green-400: #849778 !important;
  --ui-color-green-500: #9fb493 !important;
  --ui-color-green-600: #b8c8ae !important;
  --ui-color-green-700: #d0dbc8 !important;
  --ui-color-green-800: #e3eadc !important;
  --ui-color-green-900: #f3f6f1 !important;

  /* Orange scale inverted for dark mode */
  --ui-color-orange-50: #312313 !important;
  --ui-color-orange-100: #4f391f !important;
  --ui-color-orange-200: #6c4e29 !important;
  --ui-color-orange-300: #8d6736 !important;
  --ui-color-orange-400: #ad8346 !important;
  --ui-color-orange-500: #c59f61 !important;
  --ui-color-orange-600: #d8bc87 !important;
  --ui-color-orange-700: #e7d5b3 !important;
  --ui-color-orange-800: #f3ead8 !important;
  --ui-color-orange-900: #faf6ed !important;

  /* Brand button specifics */
  --ui-color-telegram-500: #D32446 !important;
  --ui-color-telegram-600: #b71a3a !important;
  --ui-color-telegram-hover: #b71a3a !important;
  --ui-color-blue-hover: #4c667d !important;
}

/* Force body & #root background in dark mode after color-scale inversion. */
html.dark body,
html.dark #root {
  background: var(--background) !important;
  color: var(--foreground) !important;
}

/* Sonner-style toast rich-color tokens */
:root {
  --toast-success-bg: hsl(143, 85%, 96%);
  --toast-success-border: hsl(145, 92%, 87%);
  --toast-success-text: hsl(140, 100%, 27%);
  --toast-error-bg: hsl(359, 100%, 97%);
  --toast-error-border: hsl(359, 100%, 94%);
  --toast-error-text: hsl(360, 100%, 45%);
  --toast-warning-bg: hsl(49, 100%, 97%);
  --toast-warning-border: hsl(49, 91%, 84%);
  --toast-warning-text: hsl(31, 92%, 45%);
  --toast-info-bg: hsl(208, 100%, 97%);
  --toast-info-border: hsl(221, 91%, 93%);
  --toast-info-text: hsl(210, 92%, 45%);
}

html.dark {
  --toast-success-bg: hsl(150, 100%, 6%);
  --toast-success-border: hsl(147, 100%, 12%);
  --toast-success-text: hsl(150, 86%, 65%);
  --toast-error-bg: hsl(358, 76%, 10%);
  --toast-error-border: hsl(357, 89%, 16%);
  --toast-error-text: hsl(358, 100%, 81%);
  --toast-warning-bg: hsl(64, 100%, 6%);
  --toast-warning-border: hsl(60, 100%, 9%);
  --toast-warning-text: hsl(46, 87%, 65%);
  --toast-info-bg: hsl(215, 100%, 6%);
  --toast-info-border: hsl(223, 43%, 17%);
  --toast-info-text: hsl(216, 87%, 65%);
}

/* Animation variables */
:root {
  --transition-duration: 0.15s !important;
  --transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Typography variables */
:root {
  --font-sans: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, Monaco, Consolas, monospace !important;

  /* Letter spacing */
  --letter-spacing-md: -0.0125em !important;

  /* Font sizes with matching line heights */
  --font-size-xs: 0.75rem !important;
  --line-height-xs: 1rem !important;
  --font-size-sm: 0.875rem !important;
  --line-height-sm: 1.25rem !important;
  --font-size-base: 1rem !important;
  --line-height-base: 1.5rem !important;
  --font-size-lg: 1.125rem !important;
  --line-height-lg: 1.75rem !important;
  --font-size-xl: 1.25rem !important;
  --line-height-xl: 1.75rem !important;
  --font-size-2xl: 1.5rem !important;
  --line-height-2xl: 2rem !important;
  --font-size-3xl: 1.875rem !important;
  --line-height-3xl: 2.25rem !important;
  --font-size-4xl: 2.25rem !important;
  --line-height-4xl: 2.5rem !important;

  /* Font weights */
  --font-weight-normal: 400 !important;
  --font-weight-medium: 500 !important;
  --font-weight-semibold: 600 !important;
  --font-weight-bold: 700 !important;
}

/* Border radius variables */
:root {
  --radius-xs: 4px !important;
  --radius-sm: 0.25rem !important;
  --radius-md: 8px !important;
  --radius-lg: 0.5rem !important;
  --radius-xl: 0.75rem !important;
  --radius-2xl: 1rem !important;
  --radius-full: 9999px !important;
}

/* Shared UI spacing variables */
:root {
  --spacing-1: 0.25rem !important;
  --spacing-2: 0.5rem !important;
  --spacing-3: 0.75rem !important;
  --spacing-4: 1rem !important;
  --spacing-5: 1.25rem !important;
  --spacing-6: 1.5rem !important;
  --spacing-8: 2rem !important;
  --spacing-10: 2.5rem !important;
  --spacing-12: 3rem !important;
  --spacing-16: 4rem !important;
}

/* Import shared UI variables for consistent theming */

html, :host {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  font-family: var(--default-font-family);
  font-feature-settings: var(--default-font-feature-settings, normal);
  font-variation-settings: var(--default-font-variation-settings, normal);
  -webkit-tap-highlight-color: transparent;
}

html, body {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
--announcement-bar-height: 0px;
}

.ui-progress-meter > div {
  transition: width 0.2s ease;
}

.ui-progress-meter--strong > div {
  background: var(--ui-surface-inverse) !important;
}

.ui-progress-meter--neutral > div {
  background: var(--ui-status-neutral-solid) !important;
}

.ui-progress-meter--inverse > div {
  background: var(--ui-text-inverse) !important;
}

.ui-progress-meter--info > div {
  background: var(--ui-status-info-solid) !important;
}

@media (prefers-color-scheme: dark) {
:root {
  --foreground-rgb: 255, 255, 255;
  --background-start-rgb: 0, 0, 0;
  --background-end-rgb: 0, 0, 0;
}
}

:root {
--ui-page-background-solid: #f5f5f2;
--ui-page-background:
  radial-gradient(circle at top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 36%),
  linear-gradient(180deg, #fafaf8 0%, #f3f3ef 100%);
--ui-panel-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(252, 252, 250, 0.92) 100%);
--ui-surface-canvas: rgba(255, 255, 255, 0.72);
--ui-surface-panel: rgba(255, 255, 255, 0.92);
--ui-surface-elevated: rgba(255, 255, 255, 0.98);
--ui-surface-muted: #f1f1ee;
--ui-surface-inset: #ecece8;
--ui-surface-inverse: #191919;
--ui-surface-inverse-hover: #2a2a2a;
--ui-border: rgba(32, 32, 32, 0.09);
--ui-border-strong: rgba(32, 32, 32, 0.16);
--ui-border-contrast: rgba(255, 255, 255, 0.18);
--ui-text-primary: #18181b;
--ui-text-secondary: #52525b;
--ui-text-tertiary: #71717a;
--ui-text-inverse: #fafaf9;
--ui-focus-ring: rgba(24, 24, 27, 0.08);
--ui-focus-ring-strong: rgba(24, 24, 27, 0.22);
--ui-shadow-card: 0 10px 30px rgba(15, 23, 42, 0.04);
--ui-shadow-floating: 0 16px 40px rgba(15, 23, 42, 0.08);
--ui-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.5);
--ui-selection-bg: rgba(24, 24, 27, 0.12);
--ui-selection-fg: #18181b;
--ui-accent-muted: rgba(211, 36, 70, 0.08);

--ui-status-neutral-surface: #f3f3f1;
--ui-status-neutral-border: #e3e1de;
--ui-status-neutral-text: #57534e;
--ui-status-neutral-solid: #2f2f2f;
--ui-status-neutral-solid-text: #fafaf9;

--ui-status-info-surface: #f2f4f5;
--ui-status-info-border: #dde2e5;
--ui-status-info-text: #4b5563;
--ui-status-info-solid: #4b5563;
--ui-status-info-solid-text: #f8fafc;

--ui-status-success-surface: #f2f5ef;
--ui-status-success-border: #d6ded0;
--ui-status-success-text: #50604b;
--ui-status-success-solid: #607a58;
--ui-status-success-solid-text: #f8faf6;

--ui-status-warning-surface: #faf6ed;
--ui-status-warning-border: #eadfca;
--ui-status-warning-text: #7c6332;
--ui-status-warning-solid: #9a7a3e;
--ui-status-warning-solid-text: #fffaf2;

--ui-status-error-surface: #faf1f2;
--ui-status-error-border: #ecd6d8;
--ui-status-error-text: #844752;
--ui-status-error-solid: #9a5d67;
--ui-status-error-solid-text: #fff7f8;
}

html.dark {
--ui-page-background-solid: #09090b;
--ui-page-background:
  radial-gradient(circle at top, rgba(63, 63, 70, 0.22) 0%, rgba(10, 10, 11, 0) 34%),
  linear-gradient(180deg, #09090b 0%, #111113 100%);
--ui-panel-gradient: linear-gradient(180deg, rgba(22, 22, 24, 0.94) 0%, rgba(14, 14, 16, 0.92) 100%);
--ui-surface-canvas: rgba(18, 18, 20, 0.76);
--ui-surface-panel: rgba(18, 18, 20, 0.92);
--ui-surface-elevated: rgba(27, 27, 30, 0.98);
--ui-surface-muted: #1f1f23;
--ui-surface-inset: #17171a;
--ui-surface-inverse: #fafaf9;
--ui-surface-inverse-hover: #e7e5e4;
--ui-border: rgba(255, 255, 255, 0.09);
--ui-border-strong: rgba(255, 255, 255, 0.16);
--ui-border-contrast: rgba(24, 24, 27, 0.12);
--ui-text-primary: #fafaf9;
--ui-text-secondary: #d4d4d8;
--ui-text-tertiary: #a1a1aa;
--ui-text-inverse: #18181b;
--ui-focus-ring: rgba(255, 255, 255, 0.1);
--ui-focus-ring-strong: rgba(255, 255, 255, 0.25);
--ui-shadow-card: 0 20px 40px rgba(0, 0, 0, 0.28);
--ui-shadow-floating: 0 24px 60px rgba(0, 0, 0, 0.36);
--ui-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.04);
--ui-selection-bg: rgba(255, 255, 255, 0.18);
--ui-selection-fg: #fafaf9;
--ui-accent-muted: rgba(211, 36, 70, 0.16);

--ui-status-neutral-surface: #1b1b1e;
--ui-status-neutral-border: #2f2f35;
--ui-status-neutral-text: #d4d4d8;
--ui-status-neutral-solid: #f5f5f4;
--ui-status-neutral-solid-text: #18181b;

--ui-status-info-surface: #171c22;
--ui-status-info-border: #26323e;
--ui-status-info-text: #d7e0ea;
--ui-status-info-solid: #cbd5e1;
--ui-status-info-solid-text: #111827;

--ui-status-success-surface: #171d18;
--ui-status-success-border: #2a382d;
--ui-status-success-text: #d8e4d2;
--ui-status-success-solid: #d4e0cd;
--ui-status-success-solid-text: #182416;

--ui-status-warning-surface: #211b14;
--ui-status-warning-border: #3b2f1f;
--ui-status-warning-text: #eedfbe;
--ui-status-warning-solid: #f2dfb4;
--ui-status-warning-solid-text: #2d2111;

--ui-status-error-surface: #22171a;
--ui-status-error-border: #3c262d;
--ui-status-error-text: #f0d7dd;
--ui-status-error-solid: #f1d7dd;
--ui-status-error-solid-text: #2a171c;
}

body {
color: var(--ui-text-primary);
background: var(--ui-page-background);
background-attachment: fixed;
min-height: 100vh;
transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#root {
min-height: 100vh;
isolation: isolate;
}

a {
color: var(--link-color);
transition: color 0.15s ease;
}

a:hover {
color: var(--link-color-hover);
}

button,
input,
textarea,
select {
transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

::selection {
background: var(--ui-selection-bg);
color: var(--ui-selection-fg);
}

:root {
--black: #000;
--white: #fff;

--font-sans: "Avenir Next", "Segoe UI Variable", "SF Pro Display", "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
--font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
--font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--default-font-family: var(--font-sans);
--default-mono-font-family: var(--font-mono);
--default-font-feature-settings: normal;
--default-font-variation-settings: normal;

--hover-brightness: 1.2;

/* Brand color tokens */
--brand-500: #D32446;
--brand-600: #b71a3a;

/* Link colors - shared UI compatible */
--link-color: var(--brand-500);
--link-color-hover: var(--brand-600);

/* Rose Colors */
--rose-50: #fff1f2;
--rose-100: #ffe4e6;
--rose-200: #fecdd3;
--rose-300: #fda4af;
--rose-400: #fb7185;
--rose-500: #f43f5e;
--rose-600: #e11d48;
--rose-700: #be123c;
--rose-800: #9f1239;
--rose-900: #881337;

/* Pink Colors */
--pink-50: #fdf2f8;
--pink-100: #fce7f3;
--pink-200: #fbcfe8;
--pink-300: #f9a8d4;
--pink-400: #f472b6;
--pink-500: #ec4899;
--pink-600: #db2777;
--pink-700: #be185d;
--pink-800: #9d174d;
--pink-900: #831843;

/* Fuchsia Colors */
--fuchsia-50: #fdf4ff;
--fuchsia-100: #fae8ff;
--fuchsia-200: #f5d0fe;
--fuchsia-300: #f0abfc;
--fuchsia-400: #e879f9;
--fuchsia-500: #d946ef;
--fuchsia-600: #c026d3;
--fuchsia-700: #a21caf;
--fuchsia-800: #86198f;
--fuchsia-900: #701a75;

/* Purple Colors */
--purple-50: #faf5ff;
--purple-100: #f3e8ff;
--purple-200: #e9d5ff;
--purple-300: #d8b4fe;
--purple-400: #c07eff;
--purple-500: #a855f7;
--purple-600: #9333ea;
--purple-700: #7e22ce;
--purple-800: #6b21a8;
--purple-900: #581c87;

/* Violet Colors */
--violet-50: #f5f3ff;
--violet-100: #ede9fe;
--violet-200: #ddd6fe;
--violet-300: #c4b5fd;
--violet-400: #a78bfa;
--violet-500: #8b5cf6;
--violet-600: #7c3aed;
--violet-700: #6d28d9;
--violet-800: #5b21b6;
--violet-900: #4c1d95;

/* Indigo Colors */
--indigo-50: #eef2ff;
--indigo-100: #e0e7ff;
--indigo-200: #c7d2fe;
--indigo-300: #a5b4fc;
--indigo-400: #818cf8;
--indigo-500: #6366f1;
--indigo-600: #4f46e5;
--indigo-700: #4338ca;
--indigo-800: #3730a3;
--indigo-900: #312e81;

/* Blue Colors - Muted steel blue for professional UI */
--blue-50: #f3f6fa;
--blue-100: #e1e8f0;
--blue-200: #c5d2e0;
--blue-300: #a3b4c8;
--blue-400: #8198af;
--blue-500: #607d96;
--blue-600: #4c667d;
--blue-700: #3a5065;
--blue-800: #2b3d4e;
--blue-900: #1d2d3b;

/* Light Blue / Sky Colors - Muted steel-blue derived */
--light-blue-50: #f4f7fb;
--light-blue-100: #e3ecf4;
--light-blue-200: #c8d8e8;
--light-blue-300: #a6c0d6;
--light-blue-400: #83a7c2;
--light-blue-500: #6690ae;
--light-blue-600: #527a97;
--light-blue-700: #3f6280;
--light-blue-800: #2f4c64;
--light-blue-900: #21384a;

/* Cyan Colors */
--cyan-50: #ecfeff;
--cyan-100: #cffafe;
--cyan-200: #a5f3fc;
--cyan-300: #67e8f9;
--cyan-400: #22d3ee;
--cyan-500: #06b6d4;
--cyan-600: #0891b2;
--cyan-700: #0e7490;
--cyan-800: #155e75;
--cyan-900: #164e63;

/* Teal Colors */
--teal-50: #f0fdfa;
--teal-100: #ccfbf1;
--teal-200: #99f6e4;
--teal-300: #5eead4;
--teal-400: #2dd4bf;
--teal-500: #14b8a6;
--teal-600: #0d9488;
--teal-700: #0f766e;
--teal-800: #115e59;
--teal-900: #134e4a;

/* Emerald Colors */
--emerald-50: #ecfdf5;
--emerald-100: #d1fae5;
--emerald-200: #a7f3d0;
--emerald-300: #6ee7b7;
--emerald-400: #34d399;
--emerald-500: #10b981;
--emerald-600: #059669;
--emerald-700: #047857;
--emerald-800: #065f46;
--emerald-900: #064e3b;

/* Green Colors - Muted sage green for professional UI */
--green-50: #f4f7f2;
--green-100: #e4ebdf;
--green-200: #cdd8c5;
--green-300: #b5c5ab;
--green-400: #A3BE8C;
--green-500: #7a9a68;
--green-600: #5f7d50;
--green-700: #47613c;
--green-800: #344a2d;
--green-900: #243620;

/* Lime Colors */
--lime-50: #f7fee7;
--lime-100: #ecfccb;
--lime-200: #d9f99d;
--lime-300: #bef264;
--lime-400: #a3e635;
--lime-500: #84cc16;
--lime-600: #65a30d;
--lime-700: #4d7c0f;
--lime-800: #3f6212;
--lime-900: #365314;

/* Yellow Colors */
--yellow-50: #fefce8;
--yellow-100: #fef9c3;
--yellow-200: #fef08a;
--yellow-300: #fde047;
--yellow-400: #facc15;
--yellow-500: #eab308;
--yellow-600: #ca8a04;
--yellow-700: #a16207;
--yellow-800: #854d0e;
--yellow-900: #713f12;

/* Amber Colors */
--amber-50: #fffbeb;
--amber-100: #fef3c7;
--amber-200: #fde68a;
--amber-300: #fcd34d;
--amber-400: #fbbf24;
--amber-500: #f59e0b;
--amber-600: #d97706;
--amber-700: #b45309;
--amber-800: #92400e;
--amber-900: #78350f;

/* Orange Colors */
--orange-50: #fff7ed;
--orange-100: #ffedd5;
--orange-200: #fed7aa;
--orange-300: #fdba74;
--orange-400: #fb923c;
--orange-500: #f97316;
--orange-600: #ea580c;
--orange-700: #c2410c;
--orange-800: #9a3412;
--orange-900: #7c2d12;

/* Red Colors - Nord aurora aligned */
--red-50: #faf0f2;
--red-100: #f5dce0;
--red-200: #e8c0c5;
--red-300: #d9999f;
--red-400: #cf7b83;
--red-500: #BF616A;
--red-600: #994E55;
--red-700: #7a3e44;
--red-800: #5e2f34;
--red-900: #432125;

/* Warm Gray Colors */
--warm-gray-50: #fafaf9;
--warm-gray-100: #f5f5f4;
--warm-gray-200: #e7e5e4;
--warm-gray-300: #d6d3d1;
--warm-gray-400: #a8a29e;
--warm-gray-500: #78716c;
--warm-gray-600: #57534e;
--warm-gray-700: #44403c;
--warm-gray-800: #292524;
--warm-gray-900: #1c1917;

/* True Gray Colors */
--true-gray-50: #fafafa;
--true-gray-100: #f5f5f5;
--true-gray-200: #e5e5e5;
--true-gray-300: #d4d4d4;
--true-gray-400: #a3a3a3;
--true-gray-500: #737373;
--true-gray-600: #525252;
--true-gray-700: #404040;
--true-gray-800: #262626;
--true-gray-900: #171717;

/* Gray Colors - Pure neutral (Cursor-style, no blue tint) */
--gray-50: #fafafa;
--gray-100: #f5f5f5;
--gray-200: #e5e5e5;
--gray-300: #d4d4d4;
--gray-400: #a3a3a3;
--gray-500: #737373;
--gray-600: #525252;
--gray-700: #404040;
--gray-800: #262626;
--gray-900: #171717;

/* Cool Gray Colors */
--cool-gray-50: #f9fafb;
--cool-gray-100: #f3f4f6;
--cool-gray-200: #e5e7eb;
--cool-gray-300: #d1d5db;
--cool-gray-400: #9ca3af;
--cool-gray-500: #6b7280;
--cool-gray-600: #4b5563;
--cool-gray-700: #374151;
--cool-gray-800: #1f2937;
--cool-gray-900: #111827;

--blue-gray-50: #f8fafc;
--blue-gray-100: #f1f5f9;
--blue-gray-200: #e2e8f0;
--blue-gray-300: #cbd5e1;
--blue-gray-400: #94a3b8;
--blue-gray-500: #64748b;
--blue-gray-600: #475569;
--blue-gray-700: #334155;
--blue-gray-800: #1e293b;
--blue-gray-900: #0f172a;
--zindex-20: 20;
--zindex-10: 10;
--zindex-9: 9;
--zindex-8: 8;
--zindex-7: 7;
--zindex-6: 6;
--zindex-5: 5;
--zindex-4: 4;
--zindex-3: 3;
--zindex-2: 2;
--zindex-1: 1;
--zindex-0: 0;
--opacity-100: 1;
--opacity-95: 0.95;
--opacity-90: 0.9;
--opacity-85: 0.85;
--opacity-80: 0.8;
--opacity-75: 0.75;
--opacity-70: 0.7;
--opacity-65: 0.65;
--opacity-60: 0.6;
--opacity-55: 0.55;
--opacity-50: 0.5;
--opacity-45: 0.45;
--opacity-40: 0.4;
--opacity-35: 0.35;
--opacity-30: 0.3;
--opacity-25: 0.25;
--opacity-20: 0.2;
--opacity-15: 0.15;
--opacity-10: 0.1;
--opacity-5: 0.05;
--gutters-xxxl: 128px;
--gutters-xxl: 112px;
--gutters-xl: 48px;
--gutters-lg: 32px;
--gutters-md: 16px;
--gutters-sm: 4px;
--gutters-xs: 0px;
--font-family-default-secondary: "Bower",Georgia,"Times New Roman",serif;
--font-family-default-primary: -apple-system,BlinkMacSystemFont,"Segoe UI","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif !important;
--font-weight-bold: 700;
--font-weight-medium: 500;
--font-weight-regular: 400;
--font-weight-light: 300;
--elevation-16: 0px 16px 32px -1px rgba(5,28,44,.2),0px 0px 1px 0px rgba(5,28,44,.15);
--elevation-8: 0px 8px 16px -1px rgba(5,28,44,.2),0px 0px 1px 0px rgba(5,28,44,.15);
--elevation-4: 0px 4px 8px -1px rgba(5,28,44,.2),0px 0px 1px 0px rgba(5,28,44,.15);
--elevation-2: 0px 2px 4px -1px rgba(5,28,44,.2),0px 0px 1px 0px rgba(5,28,44,.2);
--elevation-light-16: 0px 16px 16px -1px rgba(117, 117, 117, 0.15);
--elevation-light-8: 0px 8px 8px -1px rgba(117, 117, 117, 0.12);
--elevation-light-4: 0px 4px 4px -1px rgba(117, 117, 117, 0.10);
--elevation-light-2: 0px 2px 2px -1px rgba(117, 117, 117, 0.08);
--elevation-dark-16: 0px 16px 16px -1px rgba(0, 0, 0, 0.25);
--elevation-dark-8: 0px 8px 8px -1px rgba(0, 0, 0, 0.20);
--elevation-dark-4: 0px 4px 4px -1px rgba(0, 0, 0, 0.15);
--elevation-dark-2: 0px 2px 2px -1px rgba(0, 0, 0, 0.10);
--color-status-dark-neutral: #1b1b19;
--color-status-light-neutral: #ebebf6;
--color-status-dark-blue: #3a5065;
--color-status-light-blue: #e1e8f0;
--color-status-dark-yellow: #C9A055;
--color-status-yellow: #EBCB8B;
--color-status-light-yellow: #F9F0DA;
--color-status-dark-red: #994E55;
--color-status-red: #BF616A;
--color-status-light-red: #F2DCDE;
--color-status-dark-green: #6B8A56;
--color-status-green: #A3BE8C;
--color-status-light-green: #E5EEDC;
--color-neutral-black: #000;
--color-neutral-dark-neutral: #1b1b19;
--color-neutral-gray-80: #404040;
--color-neutral-gray-70: #525252;
--color-neutral-gray-60: #737373;
--color-neutral-gray-54: #737373;
--color-neutral-gray-30: #a3a3a3;
--color-neutral-gray-18: #d4d4d4;
--color-neutral-gray-10: #e5e5e5;
--color-neutral-gray-06: #f5f5f5;
--color-neutral-gray-04: #f5f5f5;
--color-neutral-gray-03: #fafafa;
--color-neutral-gray-02: #fafafa;
--color-neutral-hover-gray: #f5f5f5;
--color-neutral-active-gray: #e5e5e5;
--color-neutral-white: #fff;
--color-functional-orange: #D08770;
--color-functional-red: #BF616A;
--color-functional-pink: #B48EAD;
--color-functional-purple: #B48EAD;
--color-functional-turquoise: #8FBCBB;
--color-functional-pale-blue: #c5d2e0;
--color-functional-blue-transition-4: #a3b4c8;
--color-functional-blue-transition-3: #8198af;
--color-functional-blue-transition-2: #4c667d;
--color-functional-blue-transition-1: #2b3d4e;
--color-palette-cyan: #607d96;
--color-palette-deep-blue: #171717;
--color-palette-electric-blue: #171717;
--color-electric-blue-200: #e5e5e5;
--color-electric-blue-900: #171717;
--breakpoint-xxxl: 1920px;
--breakpoint-xxl: 1440px;
--breakpoint-xl: 1180px;
--breakpoint-lg: 768px;
--breakpoint-md: 480px;
--breakpoint-sm: 375px;
--breakpoint-xs: 320px;
--size-page-wrapper-1312: 82rem;
--size-page-wrapper-1216: 76rem;
--size-page-wrapper-928: 58rem;
--size-page-wrapper-768: 48rem;
--size-spacing-base-unit: 0.5rem;
--size-spacing-80: 5rem;
--size-spacing-72: 4.5rem;
--size-spacing-64: 4rem;
--size-spacing-56: 3.5rem;
--size-spacing-48: 3rem;
--size-spacing-40: 2.5rem;
--size-spacing-32: 2rem;
--size-spacing-24: 1.5rem;
--size-spacing-16: 1rem;
--size-spacing-8: 0.5rem;
--size-spacing-4: 0.25rem;
--size-line-height-136: 8.5rem;
--size-line-height-96: 6rem;
--size-line-height-92: 5.75rem;
--size-line-height-76: 4.75rem;
--size-line-height-64: 4rem;
--size-line-height-52: 3.25rem;
--size-line-height-44: 2.75rem;
--size-line-height-40: 2.5rem;
--size-line-height-36: 2.25rem;
--size-line-height-32: 2rem;
--size-line-height-28: 1.75rem;
--size-line-height-24: 1.5rem;
--size-line-height-20: 1.25rem;
--size-line-height-16: 1rem;
--size-icon-200: 12.5rem;
--size-icon-128: 8rem;
--size-icon-96: 6rem;
--size-icon-64: 4rem;
--size-icon-48: 3rem;
--size-icon-40: 2.5rem;
--size-icon-32: 2rem;
--size-icon-24: 1.5rem;
--size-icon-16: 1rem;
--size-icon-12: 0.75rem;
--size-icon-10: 0.625rem;
--size-font-120: 7.5rem;
--size-font-92: 5.75rem;
--size-font-76: 4.75rem;
--size-font-64: 4rem;
--size-font-52: 3.25rem;
--size-font-44: 2.75rem;
--size-font-36: 2.25rem;
--size-font-28: 1.75rem;
--size-font-26: 1.625rem;
--size-font-24: 1.5rem;
--size-font-20: 1.25rem;
--size-font-18: 1.125rem;
--size-font-16: 1rem;
--size-font-14: 0.875rem;
--size-font-12: 0.75rem;
--size-font-10: 0.625rem;
--size-border-width-4: 0.25rem;
--size-border-width-3: 0.1875rem;
--size-border-width-2: 0.125rem;
--size-border-width-1: 0.0625rem;
--size-border-radius-20: 1.25rem;
--size-border-radius-10: 0.625rem;
--size-border-radius-8: 0.5rem;
--size-border-radius-4: 0.25rem;
--size-border-radius-2: 0.125rem;
--typography-color-body: var(--color-neutral-gray-80);
--typography-color-heading: var(--color-neutral-black);
--color-status-neutral: var(--color-neutral-gray-80);
--color-status-blue: var(--color-palette-electric-blue);
--color-functional-pale-electric-blue: var(--color-palette-electric-blue);
--color-tertiary: var(--color-palette-cyan);
--color-secondary: var(--color-palette-deep-blue);
--color-primary: var(--color-palette-electric-blue);
--button-primary-background: var(--color-palette-electric-blue);
--button-primary-text: var(--color-neutral-white);
--button-primary-background-hover: var(--color-neutral-white);
--button-primary-text-hover: var(--color-palette-electric-blue);
--button-primary-border-hover: var(--color-palette-electric-blue);
--button-secondary-text: var(--color-status-dark-blue);
--button-secondary-border: var(--color-palette-electric-blue);
--button-secondary-border-hover: var(--color-palette-electric-blue);
--button-secondary-background: transparent;
--button-secondary-background-hover: var(--color-palette-electric-blue);
--button-secondary-text-hover: var(--color-neutral-white);
--button-tertiary-background-hover: var(--color-palette-electric-blue);
--button-tertiary-text: var(--color-neutral-black);
--button-tertiary-text-hover: var(--color-neutral-white);
--button-tertiary-border: var(--color-neutral-black);
--button-tertiary-border-hover: var(--color-palette-electric-blue);
--button-minimal-primary: var(--color-palette-electric-blue);
--button-minimal-secondary: var(--color-neutral-black);
--button-minimal-tertiary: var(--color-neutral-black);
--button-minimal-tertiary-hover: var(--color-palette-electric-blue);
--inline-link-text: var(--color-neutral-gray-80);
--inline-link-border: var(--color-palette-electric-blue);
--inline-link-text-hover: var(--color-neutral-white);
--inline-link-border-hover: transparent;
--inlike-link-background-hover: var(--color-palette-electric-blue);
--hero-text: var(--color-neutral-black);
--text-shadow: none;
--heading-link-default-border-color: var(--color-palette-electric-blue);
--heading-link-default-hover-color: var(--color-palette-electric-blue);
--root-share-icon-color: var(--color-neutral-black);
--root-share-icon-color-hover: var(--color-palette-electric-blue);
--text-color-default: var(--color-neutral-black);
--loader-border-top: var(--color-palette-deep-blue);
--loader-border: var(--color-neutral-gray-06);
--link-color-icon-default: var(--color-palette-electric-blue);
--link-color-icon-default-hover: var(--color-primary);
--link-color-default: var(--color-palette-electric-blue);
--link-color-default-hover: var(--color-palette-electric-blue);
--link-color-secondary-default: var(--color-neutral-gray-80);
--link-color-secondary-default-hover: var(--color-neutral-gray-80);
--link-inline-default-color: var(--color-neutral-gray-80);
--link-inline-default-hover-color: var(--color-neutral-white);
--link-inline-default-border-color: var(--color-primary);
--link-inline-default-border-hover-color: var(--color-primary);
--link-inline-default-background-hover-color: var(--color-primary);
--link-inline-secondary-hover-color: var(--color-neutral-white);
--link-inline-secondary-background-hover-color: var(--color-neutral-gray-80);
--link-color-text-default: var(--color-neutral-black);
--link-color-text-default-hover: var(--color-primary);
--link-cta-icon-color: var(--color-palette-electric-blue);
--link-icon-color: var(--color-neutral-gray-80);
--link-icon-hover-color: var(--color-palette-electric-blue);
--link-icon-radial-hover-color: var(--color-neutral-white);
--link-heading-color: var(--color-neutral-black);
--link-heading-hover-color: var(--color-palette-electric-blue);
}

html.dark {
/* background */
--bg-emphasis: #2b2b2b;
--bg: #101010;
--bg-subtle: #2b2b2b;
--bg-muted: #1c1c1c;
--bg-inverted: #f5f5f5;

/* background -> components*/
--bg-info: #1e2d3b;
--bg-success: #2a3d27;
--bg-attention: #3d2e22;
--bg-error: #3d2226;
--bg-dark-error: #331c20;

/* Borders */
--border-emphasis: #575757;
--border: #d8dee4;
--border-subtle: #2b2b2b;
--border-booker: #2b2b2b;
--border-muted: #1c1c1c;
--border-error: #aa2e26;

/* Content/Text */
--base: #fff;
--text-emphasis: color-mix(in oklab, var(--base) 94%, transparent);
--text: color-mix(in oklab, var(--base) 70%, transparent);
--text-subtle: color-mix(in oklab, var(--base) 58%, transparent);
--text-muted: color-mix(in oklab, var(--base) 48%, transparent);
--text-inverted: #101010;

/* Content/Text -> components */
--text-info: #dee9fc;
--text-success: #e2fbe8;
--text-attention: #fceed8;
--text-error: #f9e3e2;

/* Brand shenanigans
    -> These will be computed for the users theme at runtime.
    */
--brand: #292929;
--brand-emphasis: #696969;
--brand-text: black;

/* Typography — critical for dark mode text visibility */
--typography-color-body: var(--text);
--typography-color-heading: var(--text-emphasis);
--text-color-default: var(--text-emphasis);
--hero-text: var(--text-emphasis);

/* Neutral palette inversion */
--color-neutral-black: var(--text-emphasis);
--color-neutral-white: var(--bg);
--color-neutral-gray-80: var(--text);
--color-neutral-gray-70: var(--text-subtle);
--color-neutral-gray-60: var(--text-muted);
--color-neutral-gray-30: #525252;
--color-neutral-gray-18: #404040;
--color-neutral-gray-10: #2b2b2b;
--color-neutral-gray-06: #1c1c1c;
--color-neutral-gray-04: #1c1c1c;
--color-neutral-gray-03: #171717;
--color-neutral-gray-02: #171717;
--color-neutral-hover-gray: #2b2b2b;
--color-neutral-active-gray: #404040;

/* Center channel */
--center-channel-bg: var(--bg);
--center-channel-color: var(--text);
--center-channel-text: var(--text);
--sys-center-channel-bg: var(--bg);
--sys-center-channel-color: var(--text);
--center-channel-color-rgb: 212, 212, 212;
--sys-center-channel-color-rgb-new: 212, 212, 212;

/* Misc backgrounds */
--white: var(--bg);
--mention-bg: var(--bg-subtle);
--mention-color: var(--text);
--background--50: var(--bg);
--background--100: #2b2b2b;
--background--200: #171717;
--background--300: #1c1c1c;
--off-white: #171717;
--bg-card: #1c1c1c;
--bg-cream: #171717;

/* Buttons */
--button-color: var(--bg);
--button-background: rgba(255,255,255,.08);
--button-primary-background: var(--text-emphasis);
--button-primary-text: var(--bg);
--button-primary-background-hover: var(--text);
--button-primary-text-hover: var(--bg);
--button-primary-border-hover: var(--text);
--button-secondary-text: var(--text);
--button-secondary-border: var(--border-emphasis);
--button-secondary-background: transparent;
--button-secondary-text-hover: var(--bg);
--button-tertiary-text: var(--text-emphasis);
--button-tertiary-text-hover: var(--bg);
--button-tertiary-border: var(--text-emphasis);
--button-minimal-primary: var(--text-emphasis);
--button-minimal-secondary: var(--text-emphasis);
--button-minimal-tertiary: var(--text-emphasis);
--btn-bg-color: var(--text-emphasis);
--btn-text-color: var(--bg);
--btn-border-color: var(--text-emphasis);
--btn-bg-color-hover: var(--text);
--btn-text-color-hover: var(--bg);
--btn-border-color-hover: var(--text);

/* Links */
--link-color-text-default: var(--text-emphasis);
--link-color-text-default-hover: var(--text);
--link-color-secondary-default: var(--text-subtle);
--link-heading-color: var(--text-emphasis);
--inline-link-text: var(--text);
--link-icon-color: var(--text-subtle);

/* Status & loader */
--loader-border-top: var(--text-emphasis);
--loader-border: #2b2b2b;

/* Shadows */
--shadow-small: 0 2px 5px 0 rgba(0,0,0,.3), 0 1px 1px 0 rgba(0,0,0,.4);
--shadow-medium: 0 7px 14px 0 rgba(0,0,0,.3), 0 3px 6px 0 rgba(0,0,0,.4);
--shadow-large: 0 15px 35px 0 rgba(0,0,0,.3), 0 5px 15px 0 rgba(0,0,0,.4);

/* Misc tokens */
--primary--50: #171717;
--primary--100: #1c1c1c;
--primary--200: #262626;
--primary--300: #404040;
--primary--400: #737373;
--primary--500: #a3a3a3;
--neutrals--100: #404040;
--neutrals--200: #525252;
--neutrals--300: #737373;
--neutrals--400: #a3a3a3;
--neutrals--500: #a3a3a3;
--neutrals--600: #d4d4d4;
--neutrals--700: #e5e5e5;
--neutrals--800: #f5f5f5;
--neutrals--900: #fafafa;

/* UI color scale inversions (fallback layer — shared-ui-variables.css has !important) */
--ui-color-white: #0a0a0a;
--ui-color-black: #fafafa;

--ui-color-black-alpha-50: rgba(255, 255, 255, 0.04);
--ui-color-black-alpha-100: rgba(255, 255, 255, 0.06);
--ui-color-black-alpha-200: rgba(255, 255, 255, 0.08);
--ui-color-black-alpha-300: rgba(255, 255, 255, 0.16);
--ui-color-black-alpha-400: rgba(255, 255, 255, 0.24);
--ui-color-black-alpha-500: rgba(255, 255, 255, 0.36);
--ui-color-black-alpha-600: rgba(255, 255, 255, 0.48);
--ui-color-black-alpha-700: rgba(255, 255, 255, 0.64);
--ui-color-black-alpha-800: rgba(255, 255, 255, 0.80);
--ui-color-black-alpha-900: rgba(255, 255, 255, 0.92);

--ui-color-white-alpha-50: rgba(0, 0, 0, 0.04);
--ui-color-white-alpha-100: rgba(0, 0, 0, 0.06);
--ui-color-white-alpha-200: rgba(0, 0, 0, 0.08);
--ui-color-white-alpha-300: rgba(0, 0, 0, 0.16);
--ui-color-white-alpha-400: rgba(0, 0, 0, 0.24);
--ui-color-white-alpha-500: rgba(0, 0, 0, 0.36);
--ui-color-white-alpha-600: rgba(0, 0, 0, 0.48);
--ui-color-white-alpha-700: rgba(0, 0, 0, 0.64);
--ui-color-white-alpha-800: rgba(0, 0, 0, 0.80);
--ui-color-white-alpha-900: rgba(0, 0, 0, 0.92);

--ui-color-gray-50: #18181b;
--ui-color-gray-100: #1c1c1f;
--ui-color-gray-200: #27272a;
--ui-color-gray-300: #3f3f46;
--ui-color-gray-400: #52525b;
--ui-color-gray-500: #71717a;
--ui-color-gray-600: #a1a1aa;
--ui-color-gray-700: #d4d4d8;
--ui-color-gray-800: #e4e4e7;
--ui-color-gray-900: #fafafa;

--ui-color-blue-50: #1d2d3b;
--ui-color-blue-100: #2b3d4e;
--ui-color-blue-200: #3a5065;
--ui-color-blue-300: #4c667d;
--ui-color-blue-400: #607d96;
--ui-color-blue-500: #8198af;
--ui-color-blue-600: #a3b4c8;
--ui-color-blue-700: #c5d2e0;
--ui-color-blue-800: #e1e8f0;
--ui-color-blue-900: #f3f6fa;

}

/*
@font-face {
font-family: "Inter var";
font-weight: 100 900;
font-display: swap;
font-style: normal;
font-named-instance: "Regular";
src: url("/fonts/Inter-roman.var.woff2") format("woff2");
}*/

:root {
/* colors */
--primary: #171717;
--secondary: #f5f5f5;
--tertiary: #B48EAD;
--quaternary: #EBCB8B;

--green: #A3BE8C;
--coral: #D08770;
--gold: #EBCB8B;

--secondary-darker: #C9A055;
--primary-darker: var(--brand-emphasis);
--ui-color-blue-500: var(--blue-500);

/* classification colors */
--light-green: #E5EEDC;
--light-red: #F2DCDE;

--color-normal: #166434;
--color-murmur: #8e2534;
--color-pending: #52525b;
--color-noise: #262626;

/* buttons */
--btn-bg-color: var(--primary);
--btn-bg-color-hover: #565564;
--btn-text-color: var(--white);
--btn-text-color-hover: var(--white);
--btn-border-color: #0d0c22;
--btn-border-color-hover: #565564;

/* background */
--bg-emphasis: #e5e7eb;
--bg: white;
--bg-subtle: #fafafc;
--bg-muted: #f9fafb;
--bg-inverted: #111827;
--bg-cream: #f7f5f2;
--bg-card: #f6f9fc;

/* background -> components*/
--bg-info: #dee9fc;
--bg-success: #e2fbe8;
--bg-attention: #fceed8;
--bg-error: #f9e3e2;
--bg-dark-error: #752522;

/* Borders */
--border-emphasis: #9ca3af;
--border: #d8dee4;
--border-subtle: #e5e7eb;
--border-booker: #e5e7eb;
--border-muted: #f3f4f6;
--border-error: #aa2e26;

/* Content/Text */
--text-emphasis: #111827;
--text: #414552;
--text-subtle: #6b7280;
--text-muted: #9ca3af;
--text-inverted: white;

/* Content/Text -> components */
--text-info: #253985;
--text-success: #285231;
--text-attention: #73321b;
--text-error: #752522;
--red: var(--text-error);

/* Brand shinanigans
  */
--brand: #171717;
--brand-emphasis: hsla(0, 0%, 6%, 1);
--brand-text: hsla(0, 0%, 100%, 1);

--shadow-small:  0 2px  5px  0 rgba( 60, 66,87 , .08 ), 0 1px 1px  0 rgba( 0,0,0 , .12 );
--shadow-medium: 0 7px  14px 0 rgba( 60,66,87 , .08 ),  0 3px 6px  0 rgba( 0,0,0 , .12 );
--shadow-large:  0 15px 35px 0 rgba( 60,66,87 , .08 ),  0 5px 15px 0 rgba( 0,0,0 , .12 );

--mention-bg: #ffffff;
--mention-color: #3a5065;
--sidebar-text: #ffffff;
--sidebar-text-rgb: 255, 255, 255;
--sidebar-header-text-color: #ffffff;
--sidebar-bg: #262626;
--sys-sidebar-bg: #262626;
--sys-sidebar-bg-rgb: 38, 38, 38;
--sidebar-text-active-border: #607d96;
--away-indicator-rgb: 235, 203, 139;
--center-channel-color-rgb: 64, 64, 64;
--sys-error-text: #BF616A;
--sys-sidebar-text-active-border: #607d96;
--sys-center-channel-color: var(--text);
--sys-center-channel-bg: var(--bg);
--sys-center-channel-color-rgb: #d4d4d4;
--sys-center-channel-color-rgb-new: 64, 64, 64;
--sys-online-indicator: #A3BE8C;
--center-channel-bg: var(--bg);
--center-channel-text: var(--text);
--center-channel-color: var(--text);
--button-color: var(--bg);
--away-indicator-dark: #C9A055;
--online-indicator: #A3BE8C;
--sys-button-bg: var(--primary);
--away-indicator: #EBCB8B;
--sys-error-text-color-rgb: 191, 97, 106;
--error-text: #BF616A;


--black: #000;
--background--50: var(--bg);
--off-white: #fefdf9;
--pastel-red: #F2DCDE;
--pastel-blue: #88C0D0;
--pastel-yellow: #EBCB8B;
--pastel-orange: #D08770;
--gray-2: #737373;
--background--300: #f5f5f5;
--purple: #B48EAD;
--blue: #607d96;
--gray: rgba(0,0,0,.5);
--neutrals--100: #e5e5e5;
--neutrals--300: #a3a3a3;
--primary--50: #fafafa;
--primary--400: #737373;
--border-radius--m: 0.5rem;
--neutrals--900: #171717;
--primary--200: #e5e5e5;
--900: #171717;
--background--100: #e5e5e5;
--border-radius--l: 0.75rem;
--error: #BF616A;
--neutrals--600: #525252;
--primary--300: #d4d4d4;
--primary--500: #404040;
--button-background: rgba(255,255,255,.15);
--background--200: #fafafa;
--neutrals--400: #a3a3a3;
--neutrals--200: #d4d4d4;
--neutrals--500: #737373;
--border-radius--s: 0.25rem;
--neutrals--800: #262626;
--neutrals--700: #404040;
--primary--100: #f5f5f5;
}

body {
margin: 0;
padding: 0;
line-height: 1.2;
font-family: var(--font-family-default-primary);
text-rendering: optimizeLegibility;
font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga" on;
margin: 0 auto;
overflow-x: hidden;
color: var(--typography-color-body);
background: var(--bg);
}

::selection {
color: var(--brand-text);
background: var(--brand);
}

body  {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}

html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
font-size: 100%;
}

html, body {
height: 100%;
}

[type="text"]:focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="checkbox"]:focus,
[type="radio"]:focus,
[type="time"]:focus,
[type="week"]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
--tw-ring-color: var(--primary);
border-color: var(--primary);
}

canvas {
display: unset !important;
}

h1.xxlarge {
  font-weight: 400;
  font-size: 80px;
  line-height: 1.1em;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.ordered-list li:before {
  content: counter(item);
  display: flex;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  --tw-border-opacity: 1;
  border: 1px solid rgb(41 54 83/var(--tw-border-opacity));
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.ordered-list li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.items-center {
  align-items: center;
}

.flex {
  display: flex;
}

:after, :before {
--tw-content: "";
}

*, :after, :before {
box-sizing: border-box;
border: 0 solid;
}

.overflow-x-hidden {
overflow-x: hidden;
}

.justify-center {
justify-content: center;
}

.items-center {
align-items: center;
}

.flex-col {
flex-direction: column;
}

.w-full {
width: 100%;
}

.relative {
position: relative;
}

.bg-gradient-green {
background: linear-gradient(0deg,#051c37 0%,#0b2c54 100%);
color: var(--white);
}

.white-wave-not-inverted {
top: -135px;
}

@media (min-width: 1024px) {
.section-wave {
    left: 0 !important;
}
}

@media (min-width: 640px) {
.section-wave {
    left: -336px;
}
.sm\:pt-36 {
  padding-top: 9rem !important
}
}

.gap-4 {
gap: 1rem;
}


.section-wave {
left: -532px;
line-height: 0;
min-width: 1440px;
overflow: hidden;
position: absolute;
width: 100%;
}

.section-wave svg {
position: relative;
display: block;
height: 192px;
width: 100%;
}

@media (min-width: 640px) {
.sm\:max-w-none {
  max-width: none;
}
.sm\:pb-20 {
  padding-bottom: 5rem;
}
}

@media (min-width: 1280px) {
.container {
  max-width: 1000px;
}
}

.max-w-\[200px\] {
max-width: 200px;
}

.mx-auto {
margin-left: auto;
margin-right: auto;
}


audio, canvas, embed, iframe, img, object, svg, video {
display: block;
vertical-align: middle;
}


menu, ol, ul {
list-style: none;
margin: 0;
padding: 0;
}

.ordered-list li {
counter-increment: item;
}


.MuiAppBar-colorPrimary {
color: var(--black);
background-color: var(--white) !important;
}

.MuiPaper-elevation4 {
box-shadow: 0px 2px 4px -1px rgb(255 255 255 / 20%), 0px 4px 5px 0px rgb(217 217 217 / 14%), 0px 1px 10px 0px rgb(255 255 255 / 12%) !important;
}

.MuiSvgIcon-root {
fill: var(--text-emphasis) !important;
}

/* Keep Lucide icons stroke-only across the app. */
.lucide,
.lucide * {
fill: none !important;
}

.MuiTypography-colorInherit {
color: var(--text-emphasis) !important
}

.btn-primary, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary, .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
outline: none;
box-shadow: none;
}

.page-item.active .page-link {
z-index: 3;
color: var(--black);
background-color: var(--gray-200) !important;
border-color: var(--gray-300) !important;
}

.pagination > li > a, .pagination > li > span {
color: var(--black);
}

.bg-white {
background: var(--white);
}


.pt-4 {
padding-top: 40px;
}

.mt-4 {
margin-top:40px;
}

.mt-3 {
margin-top:30px;
}

.mt-2 {
margin-top:20px;
}

.mt-1 {
margin-top: 10px;
}

.mb-2 {
margin-bottom: 20px;
}

.mb-3 {
margin-bottom: 30px;
}

.mb-4 {
margin-bottom: 40px;
}

.ml-2 {
margin-left: 20px;
}

.mb-1 {
margin-bottom: 10px;
}

.inline {
display: inline-block;
}

.center, .align-center {
text-align: center;
}

.pb-4 {
padding-bottom: 40px;
}

.navbar-default .navbar-toggle {
  border-color: var(--white) !important;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: var(--white) !important;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: var(--primary) !important;
}

.btn {
outline: none;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
background: var(--bg-muted);
}

.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
background-color: var(--bg-error);
border-color: var(--border-error)
}


.bi::before {
display: inline-block;
content: "";
background-image: url("data:image/svg+xml,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27><path fill=%27none%27 stroke=%27%23333%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M5 14l6-6-6-6%27/></svg>");
background-repeat: no-repeat;
background-size: 1rem 1rem;
}

.grecaptcha-badge {
visibility: collapse !important;
}

.btn-shadow {
box-shadow: none;
}

/*Create ripple effec*/

.ripple {
position: relative;
overflow: hidden;
transform: translate3d(0, 0, 0);
}

.ripple:after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
background-repeat: no-repeat;
background-position: 50%;
transform: scale(10, 10);
opacity: 0;
transition: transform .5s, opacity 1s;
}

.ripple:active:after {
transform: scale(0, 0);
opacity: .3;
transition: 0s;
}


/* background-color: var(--blue-gray-500); */
/*
MARK: Todo:
- primary color =  var(--cal-brand,#111827);
- text color: var(--cal-text,#374151);
- bold color: var(--cal-text-emphasis,#111827)
- grey background: var(--cal-bg-muted);
- grey background emphasis: var(--cal-bg-emphasis);
- grey hover bg: var(--cal-bg-muted);
- green success:  --cal-text-success: #285231;
- info bg: var(--cal-bg-info);


btn btn-primary
.admin-sidebar .sidebar-section-title--active, .admin-sidebar .sidebar-subsection-title--active 

*/

/* Admin sidebar active styles moved to containers/admin_sidebar.css */

.btn-secondary {
color: var(--black) !important;
background-color: var(--secondary) !important;
box-shadow: rgb(0, 0, 0) 0px 0px 0px;
font-weight: 600;
}

.btn-primary {
color: var(--white) !important;
background-color: var(--primary) !important;
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary,
.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
color: #fff;
background-color: var(--brand-emphasis);
outline: none;
box-shadow: none;
}

.btn-primary.is-active, .btn-primary:focus, .btn-primary:hover {
background: var(--brand-emphasis);
}

.btn-danger.btn-outline {
color: var(--border-error);
}

.btn-danger {
color: #fff;
background: var(--bg-danger);
border: 1px solid var(--border-error)
}

@keyframes spin {
from {
  transform: rotate(-90deg);
}

to {
  transform: rotate(270deg);
}
}

@keyframes heartbeat {
0% {
  transform: scale(1);
}
12% {
  transform: scale(1.1);
}
24% {
  transform: scale(1);
}
36% {
  transform: scale(1.1);
}
48% {
  transform: scale(1);
}
}

@keyframes pulse {
0% {
  transform: scale(.95);
}
50% {
  transform: scale(1);
}
100% {
  transform: scale(.95);
}
}

.walkthrough-backdrop {
top: 0;
right: 0;
left: 0;
bottom: 0;
position: fixed;
background: transparent;
z-index: 99999999999;
}

.walkthrough-backdrop.show {
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}

.walkthrough-backdrop * {
box-sizing: border-box; 
}

.walkthrough-modal {
margin-left: auto;
margin-right: auto;
position: relative;
text-align: center;
overflow-y: auto;
overflow-x: hidden;
border-radius: 12px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
border: 1px solid rgba(255, 255, 255, 0.1);
z-index: 99999999999;
}

.walkthrough-content-box {
overflow-y: auto;
}

.walkthrough-modal .walkthrough-content-box {
float: left;
}

.walkthrough-modal .walkthrough-content-box img {
margin-top: 0px;
}

.walkthrough-modal .walkthrough-content {
width: 100%;
text-align: center;
overflow-y: auto;
}

.walkthrough-modal .walkthrough-container {
position: absolute;
top: 0;
left: 0;
}

.walkthrough-modal .walkthrough-footer {
height: 100px;
position: fixed;
padding: 0 35px;
width: -webkit-fill-available;
bottom: 0;
display: flex;
justify-content: space-between;
align-items: center;
background: transparent;
z-index: 999999999999999999999
}


@media (max-width: 768px) {
.walkthrough-modal .walkthrough-footer {
  padding: 0 15px; 
}
}

.walkthrough-modal .btn {
border: 0;
padding: 0;
box-shadow: none;
}

.walkthrough-modal .btn:active, .walkthrough-modal .btn:focus {
background: none;
outline: none;
}

.walkthrough-modal .btn-footer {
border: 0;
background: rgba(20, 23, 27, 0.52);
padding: 0;
box-shadow: none;
width: 95px;
height: 40px;
line-height: normal;
font-size: 18px;
border-radius: 50px;
cursor: pointer;
border: none;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.walkthrough-modal .btn-footer span {
vertical-align: top;
}

.walkthrough-modal .btn-footer:active, .walkthrough-modal .btn-footer:focus {
outline: none;
}

.walkthrough-modal .btn-back.first-page {
opacity: 0;
pointer-events: none;
}

.walkthrough-modal .walkthrough-page-indicator {
  text-align: center;
  opacity: 0;
}

.walkthrough-modal .walkthrough-page-indicator.show {
  opacity: 1; 
}

.walkthrough-modal .walkthrough-page-indicator > button {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: 17px;
  height: 17px;
  cursor: pointer;
  display: inline;
}

.walkthrough-modal .walkthrough-page-indicator > button:active, .walkthrough-modal .walkthrough-page-indicator > button:focus {
  background: none;
  outline: none;
}

.walkthrough-modal .walkthrough-page-indicator > button .walkthrough-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: rgba(20, 23, 27, 0.52);
  border-radius: 3.5px; 
}

.walkthrough-modal .walkthrough-page-indicator > button .walkthrough-dot.selected {
  background: #000000;
}

.walkthrough {
  font-family: inherit;
  text-align: center;
  color: #4a4a4a;
}

.walkthrough-title {
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}

.walkthrough-desc {
  font-size: 16px;
  padding: 0 20px;
  line-height: 1.6;
  text-align: left;
}

/* Button content centering fix */
.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Content Styling */
.walkthrough-title {
  color: #171717 !important;
  font-weight: 600 !important;
  font-size: 28px !important;
  letter-spacing: -0.025em !important;
}

.walkthrough-desc {
  color: #737373 !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

.button.is-outline {
  border: 1px solid var(--gray-900);
  color: var(--gray-900);
  background-color: transparent;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  transition: border-color .2s,color .2s,background-color .2s;
}

.button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--gray-900);
  color: #fff;
  border-radius: 99rem;
  align-items: center;
  padding: 1rem 1.625rem;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.button-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  margin-right: -1rem;
}

.button.is-outline-light {
  border: 1px solid rgba(255,255,255,.20);
  background-color: rgba(255,255,255,.20);
  color: #ffffff;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  transition: border-color .2s,color .2s,background-color .2s;
}


.announcement-bar {
 position: fixed;
 z-index: 999;
 top: 0;
 display: flex;
 overflow: hidden;
 width: 100%;
 min-height: 40px;
 max-height: 40px;
 align-items: center;
 justify-content: center;
 background-color: var(--text-muted);
 color: var(--bg);
 text-align: center;
}

.announcement-bar .announcement-bar__text {
 display: flex;
 overflow: hidden;
 width: 100%;
 align-items: center;
 justify-content: center;
 white-space: nowrap;
 position: relative;
}

.announcement-bar .announcement-bar__text--auto-slide {
 justify-content: flex-start;
 padding-right: 32px;
}

.announcement-bar .announcement-bar__auto-slide-icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 flex: 0 0 auto;
}

.announcement-bar .announcement-bar__marquee {
 overflow: hidden;
 flex: 1 1 auto;
 min-width: 0;
}

.announcement-bar .announcement-bar__marquee-track {
 display: flex;
 white-space: nowrap;
 animation: announcement-bar-marquee 40s linear infinite;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
}

.announcement-bar .announcement-bar__marquee-segment {
 display: flex;
 flex-shrink: 0;
 align-items: center;
 min-width: 100%;
 justify-content: center;
 padding: 0 48px;
}

.announcement-bar .announcement-bar__marquee-item {
 white-space: nowrap;
 font-size: 14px;
 font-style: normal;
 font-weight: 600;
 line-height: 20px;
}

@keyframes announcement-bar-marquee {
 from {
  transform: translate3d(0, 0, 0);
 }
 to {
  transform: translate3d(-50%, 0, 0);
 }
}

.announcement-bar .announcement-bar__marquee-item a {
 color: inherit;
 text-decoration: underline;
 cursor: pointer;
}

.announcement-bar .announcement-bar__marquee-item a:hover {
 opacity: 0.8;
}

.announcement-bar .announcement-bar__text > p {
 overflow: hidden;
 margin: 0;
 text-overflow: ellipsis;
}

.announcement-bar .announcement-bar__text > span {
 font-size: 14px;
 font-style: normal;
 font-weight: 600;
 line-height: 20px;
}

@media (prefers-reduced-motion: reduce) {
 .announcement-bar .announcement-bar__marquee-track {
  animation: none !important;
 }
}

.announcement-bar .announcement-bar__text .annnouncementBar__purchaseNow, .announcement-bar .announcement-bar__text .annnouncementBar__renewLicense {
 margin-top: 0;
}

.announcement-bar .announcement-bar__text .annnouncementBar__renewLicense {
 border-color: var(--bg);
}

.announcement-bar a {
 color: inherit !important;
 text-decoration: underline;
}

.announcement-bar a:hover, .announcement-bar a:active, .announcement-bar a:focus {
 color: inherit !important;
}

.announcement-bar a.announcement-bar__close {
 position: absolute;
 top: 5px;
 right: 0;
 padding: 0 10px;
 color: #fff;
 font-size: 20px;
 font-weight: 600;
 text-decoration: none;
}

.announcement-bar a.announcement-bar__close:hover {
 color: #fff;
 text-decoration: none;
}

.announcement-bar .fa-wrapper {
 margin: 0 5px;
}

.announcement-bar .resend-verification-wrapper::before {
 content: "\00a0 ";
}

.announcement-bar .content__icon, .announcement-bar i {
 margin-right: 4px;
 color: #fff;
 font-family: 'compass-icons';
 font-size: 16px;
}

.announcement-bar button {
 height: 24px;
 box-sizing: border-box;
 padding: 4px 8px;
 border: 1px solid var(--bg);
 margin-left: 8px;
 background-color: inherit !important;
 border-radius: 4px;
 font-size: 12px;
 font-style: normal;
 font-weight: 600;
 line-height: 16px;
}

.announcement-bar button:hover {
 background-color: rgba(255, 255, 255, 0.08);
}

.announcement-bar-critical {
 background-color: #BF616A;
}

.announcement-bar-success {
 background-color: #A3BE8C;
}

.announcement-bar-advisor {
 background-color: #607d96;
}

.announcement-bar-advisor-ack {
 background-color: #A3BE8C;
}

.announcement-bar-general {
 background-color: #3d3c40;
}

.announcement-bar--compact {
 min-height: 28px;
 max-height: 28px;
}

.announcement-bar--compact .announcement-bar__text {
 padding-right: 36px;
 padding-left: 8px;
}

.announcement-bar--compact .announcement-bar__text > span,
.announcement-bar--compact .announcement-bar__text > p {
 overflow: hidden;
 max-width: 100%;
 font-size: 12px;
 line-height: 16px;
 text-overflow: ellipsis;
 white-space: nowrap;
}

.announcement-bar--compact .advisor-icon {
 width: 12px;
 height: 12px;
 margin-right: 6px;
 margin-left: 0;
 margin-bottom: 0;
}

.announcement-bar--compact a.announcement-bar__close {
 top: 1px;
 right: 2px;
 font-size: 18px;
}

.announcement-bar__link {
 margin-left: 4px;
}

.advisor-icon {
 width: 16px;
 height: 16px;
 margin-right: 8px;
 margin-bottom: 2px;
 margin-left: 8px;
}

@media (max-width: 768px) {
 .announcement-bar {
  min-height: 44px;
  max-height: 44px;
 }

 .announcement-bar--compact {
  min-height: 30px;
  max-height: 30px;
 }

 .announcement-bar .announcement-bar__text {
  min-width: 0;
 }

 .announcement-bar .announcement-bar__text--auto-slide {
  padding-left: 6px;
  padding-right: 40px;
 }

 .announcement-bar .announcement-bar__marquee-item,
 .announcement-bar .announcement-bar__text > span {
  font-size: 12px;
  line-height: 18px;
 }

 .announcement-bar .announcement-bar__marquee-segment {
  padding: 0 28px;
 }

 .announcement-bar a.announcement-bar__close {
  top: 7px;
  right: 2px;
  padding: 0 8px;
  font-size: 18px;
 }

 .announcement-bar--compact a.announcement-bar__close {
  top: 2px;
  right: 2px;
  font-size: 18px;
 }

 .advisor-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  margin-left: 6px;
  margin-bottom: 1px;
 }

}

body.announcement-bar--fixed {
padding-top: 40px;
padding-top: var(--announcement-bar-height, 40px);
}

@media (max-width: 768px) {
 body.announcement-bar--fixed {
  padding-top: 44px;
  padding-top: var(--announcement-bar-height, 44px);
 }
}

body.announcement-bar--fixed .navbar-fixed-top {
 top: 40px;
 top: var(--announcement-bar-height, 40px);
}


/* Admin console styles moved to containers/admin_sidebar.css for lazy loading */

#root {
background: var(--background);
}

.no-hover-underline, .no-hover-underline:hover {
text-decoration: none;
}

.card {
padding: var(--spacing-3) !important;
}


/* Subtle links (for navigation, secondary actions) */
.link-subtle {
  color: var(--foreground);
  text-decoration: none;
}

.link-subtle:hover,
.link-subtle:focus {
  color: var(--brand-600) !important;
  text-decoration: underline !important;
}

/* Muted links (for footers, less important text) */
.link-muted {
  color: var(--muted-foreground);
  text-decoration: none;
}

.link-muted:hover,
.link-muted:focus {
  color: var(--foreground) !important;
  text-decoration: underline !important;
}

/* Brand links - explicit brand styling */
.link-brand {
  color: var(--brand-500);
  text-decoration: none;
}

.link-brand:hover,
.link-brand:focus {
  color: var(--brand-600) !important;
  text-decoration: underline !important;
}

/* Toni product UI utilities */
.toni-chat-markdown {
  word-break: break-word;
}

.toni-chat-markdown .markdown__heading,
.toni-chat-markdown h1,
.toni-chat-markdown h2,
.toni-chat-markdown h3,
.toni-chat-markdown h4,
.toni-chat-markdown h5,
.toni-chat-markdown h6 {
  margin: 0 0 0.55em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.45;
}

.toni-chat-markdown .markdown__paragraph-inline,
.toni-chat-markdown p {
  margin: 0;
  line-height: 1.65;
}

.toni-chat-markdown .markdown__paragraph-inline + .markdown__paragraph-inline,
.toni-chat-markdown .markdown__paragraph-inline + p,
.toni-chat-markdown p + .markdown__paragraph-inline,
.toni-chat-markdown p + p {
  margin-top: 0.8em;
}

.toni-chat-markdown .markdown__list,
.toni-chat-markdown ul,
.toni-chat-markdown ol {
  margin: 0.8em 0 0;
  -webkit-padding-start: 1.25em;
          padding-inline-start: 1.25em;
}

.toni-chat-markdown li + li {
  margin-top: 0.3em;
}

.toni-chat-markdown a,
.toni-chat-markdown .markdown__link {
  color: var(--toni-chat-link-color, var(--blue-700, #2b6cb0));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.toni-chat-markdown blockquote {
  margin: 0.8em 0 0;
  padding-left: 0.9em;
  border-left: 3px solid rgba(148, 163, 184, 0.45);
  color: inherit;
  opacity: 0.92;
}

.toni-chat-markdown code,
.toni-chat-markdown pre {
  font-size: 0.92em;
}

.toni-chat-markdown code {
  padding: 0.1em 0.35em;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 6px;
}

.toni-chat-markdown pre {
  margin: 0.8em 0 0;
  padding: 0.8em;
  overflow-x: auto;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 12px;
}

.toni-chat-markdown pre code {
  padding: 0;
  background: transparent;
}

@keyframes toni-typing-pulse {
  0%, 60%, 100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.toni-typing-dot {
  animation: toni-typing-pulse 1.4s ease-in-out infinite;
}

.toni-typing-dot--2 {
  animation-delay: 0.15s;
}

.toni-typing-dot--3 {
  animation-delay: 0.3s;
}

.toni-typing-dot--family.toni-typing-dot--2,
.toni-typing-dot--compact.toni-typing-dot--2 {
  animation-delay: 0.2s;
}

.toni-typing-dot--family.toni-typing-dot--3,
.toni-typing-dot--compact.toni-typing-dot--3 {
  animation-delay: 0.4s;
}

.toni-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  line-height: 1;
  vertical-align: text-bottom;
}

.toni-icon--micro {
  width: 10px;
  height: 10px;
  font-size: 10px;
}

.toni-icon--mini {
  width: 11px;
  height: 11px;
  font-size: 11px;
}

.toni-icon--tiny {
  width: 12px;
  height: 12px;
  font-size: 12px;
}

.toni-icon--xs {
  width: 14px;
  height: 14px;
  font-size: 14px;
}

.toni-icon--sm {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.toni-icon--md {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.toni-icon--lg {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.toni-icon--xl {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.toni-icon--2xl {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.toni-icon--3xl {
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.toni-icon--presentation {
  width: 26px;
  height: 26px;
  font-size: 26px;
}

.toni-icon--display {
  width: 32px;
  height: 32px;
  font-size: 32px;
}

.toni-icon--hero {
  width: 36px;
  height: 36px;
  font-size: 36px;
}

.toni-icon--heading {
  color: var(--ui-text-primary);
}

.toni-icon--muted {
  color: var(--ui-text-tertiary);
}

.toni-icon--subtle {
  color: var(--ui-color-gray-500, #71717a);
}

.toni-icon--neutral {
  color: var(--ui-color-gray-600, #52525b);
}

.toni-icon--strong {
  color: var(--ui-color-gray-700, #3f3f46);
}

.toni-icon--inverse {
  color: var(--ui-text-inverse, #ffffff);
}

.toni-icon--blue {
  color: var(--ui-color-blue-500, #3182ce);
}

.toni-icon--success {
  color: var(--ui-status-success-solid, #10b981);
}

.toni-icon--warning {
  color: var(--ui-status-warning-solid, #f59e0b);
}

.toni-icon--error {
  color: var(--ui-status-error-solid, #ef4444);
}

.toni-icon--info {
  color: var(--ui-status-info-solid, #6366f1);
}

.toni-icon--teal {
  color: var(--ui-color-teal-500, #319795);
}

.toni-icon--brand {
  color: var(--ui-accent, var(--accent));
}

.toni-icon--centered {
  margin-inline: auto;
}

.toni-icon--rotate-back {
  transform: rotate(-90deg);
}

.toni-icon--top-offset {
    margin-top: 2px;
}

.toni-calendar-qr-image {
    display: block;
}

.toni-decorative-svg {
    display: block;
}

.toni-select-divider-option {
    background-color: var(--bg-subtle, #f5f5f5);
    font-weight: 700;
}

.toni-collapse-full {
    width: 100%;
}

.toni-cookie-consent-slide {
    z-index: 9999;
}

.toni-file-input {
    display: none;
}

.toni-swipeable-card-content {
    touch-action: pan-y;
}

.toni-progress-fill-complete > div:first-child,
.toni-progress-fill-overdue > div:first-child {
  background: #1a1a1a !important;
}

.toni-progress-fill-strong > div:first-child,
.toni-progress-fill-urgent > div:first-child {
  background: #4a5568 !important;
}

.toni-progress-fill-muted > div:first-child,
.toni-progress-fill-soon > div:first-child {
  background: #718096 !important;
}

.toni-progress-fill-default > div:first-child {
  background: #a0aec0 !important;
}

.toni-progress-fill-primary > div:first-child,
.toni-progress-fill-heading > div:first-child {
  background: var(--foreground, #18181b) !important;
}

.toni-progress-fill-brand > div:first-child {
  background: var(--primary, #18181b) !important;
}

.toni-progress-fill-rounded > div:first-child {
  border-radius: 9999px !important;
}

.toni-progress-fill-transition > div:first-child {
  transition: width 0.3s ease-out !important;
}

@keyframes toni-landing-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes toni-landing-scroll-dot {
  0% {
    opacity: 1;
    top: 6px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

.toni-landing-scroll-indicator {
  animation: toni-landing-bounce 2s infinite;
}

.toni-landing-scroll-dot {
  animation: toni-landing-scroll-dot 1.5s infinite;
}

@media (hover: hover) and (pointer: fine) {
  .toni-collapsible-header-fixed {
    background: rgba(255, 255, 255, 0.92) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.toni-bottom-tab-button {
  -webkit-tap-highlight-color: transparent;
}

@keyframes ui-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ui-spinner-ring {
  animation: ui-spin 1s linear infinite;
}

.text-wrap-pretty {
  text-wrap: pretty;
}

.cms-legal-page__body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-emphasis);
  font-size: 1.375rem;
  font-weight: 600;
}

.cms-legal-page__body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-emphasis);
  font-size: 1.125rem;
  font-weight: 600;
}

.cms-legal-page__body p,
.cms-legal-page__body ul,
.cms-legal-page__body ol {
  margin-bottom: 1rem;
}

.cms-legal-page__body ul,
.cms-legal-page__body ol {
  padding-left: 1.5rem;
}

.cms-legal-page__body li {
  margin-bottom: 0.25rem;
}

.cms-legal-page__body a {
  color: var(--primary, #2563eb);
  text-decoration: underline;
}

.cms-legal-page__body blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--border, #d1d5db);
  color: var(--muted-foreground, #4b5563);
  font-style: italic;
}

.study-video-strip {
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.study-video-strip::-webkit-scrollbar {
  height: 3px;
}

.study-video-strip::-webkit-scrollbar-track {
  background: transparent;
}

.study-video-strip::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.study-scroll-snap-start {
  scroll-snap-align: start;
}

@keyframes study-live-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.study-live-pulse {
  animation: study-live-pulse 2s ease-in-out infinite;
}

@keyframes study-shimmer-sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.study-shimmer-sweep {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  animation: study-shimmer-sweep 1.9s ease-in-out infinite;
}

.health-score-ring--excellent {
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

.health-score-ring--great {
  filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.25));
}

.health-score-ring--good {
  filter: drop-shadow(0 0 20px rgba(132, 204, 22, 0.2));
}

.health-score-ring--warning {
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.2));
}

.health-score-ring--danger {
  filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.2));
}

.health-score-gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.health-score-gradient-text--excellent {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.health-score-gradient-text--great {
  background: linear-gradient(135deg, #22C55E 0%, #4ADE80 100%);
}

.health-score-gradient-text--good {
  background: linear-gradient(135deg, #84CC16 0%, #A3E635 100%);
}

.health-score-gradient-text--warning {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.health-score-gradient-text--danger {
  background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

.document-upload-progress > div:first-child {
  background: var(--foreground, #18181b) !important;
  transition: width 0.35s ease !important;
}

.document-upload-progress--slow > div:first-child {
  transition-duration: 0.4s !important;
}

.backdrop-blur-16 {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.backdrop-blur-20 {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

@media screen and (min-width: 48em) {
  .app-mockup-card {
    width: var(--app-mockup-md-width) !important;
    height: var(--app-mockup-md-height) !important;
  }
}

@media screen and (min-width: 62em) {
  .app-mockup-card {
    width: var(--app-mockup-lg-width) !important;
    height: var(--app-mockup-lg-height) !important;
  }
}

@keyframes skeleton-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.settings-subscription-scroll::-webkit-scrollbar {
  height: 6px;
}

.settings-subscription-scroll::-webkit-scrollbar-track {
  background: var(--gray-100, #f7fafc);
}

.settings-subscription-scroll::-webkit-scrollbar-thumb {
  background: var(--gray-300, #e2e8f0);
  border-radius: 3px;
}

.qr-code-svg svg {
  display: block;
  width: 180px;
  height: 180px;
}

.admin-affiliate-preview table {
  width: 100%;
  border-collapse: collapse;
}

.admin-affiliate-preview td,
.admin-affiliate-preview th {
  padding: 8px;
}

.admin-affiliate-preview img {
  max-width: 100%;
}

.payment-flow-scroll {
  -webkit-overflow-scrolling: touch;
}

.payment-flow-scroll::-webkit-scrollbar {
  width: 4px;
}

.payment-flow-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 9999px;
}

.hidden-scrollbar {
  scrollbar-width: none;
}

.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.\!container {
    width: 100% !important
}
.container {
    width: 100%
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important
    }
    .container {
        max-width: 640px
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important
    }
    .container {
        max-width: 768px
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important
    }
    .container {
        max-width: 1024px
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important
    }
    .container {
        max-width: 1280px
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important
    }
    .container {
        max-width: 1536px
    }
}
.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 !important
}
.visible {
    visibility: visible
}
.invisible {
    visibility: hidden
}
.collapse {
    visibility: collapse
}
.static {
    position: static
}
.fixed {
    position: fixed
}
.absolute {
    position: absolute
}
.\!relative {
    position: relative !important
}
.relative {
    position: relative
}
.sticky {
    position: -webkit-sticky;
    position: sticky
}
.inset-0 {
    inset: 0px
}
.inset-x-0 {
    left: 0px;
    right: 0px
}
.inset-y-0 {
    top: 0px;
    bottom: 0px
}
.bottom-0 {
    bottom: 0px
}
.left-0 {
    left: 0px
}
.left-1\/2 {
    left: 50%
}
.right-0 {
    right: 0px
}
.right-2 {
    right: 0.5rem
}
.right-4 {
    right: 1rem
}
.top-0 {
    top: 0px
}
.top-1\/2 {
    top: 50%
}
.top-2 {
    top: 0.5rem
}
.top-4 {
    top: 1rem
}
.z-10 {
    z-index: 10
}
.z-20 {
    z-index: 20
}
.z-50 {
    z-index: 50
}
.-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem
}
.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem
}
.-mb-px {
    margin-bottom: -1px
}
.-ml-px {
    margin-left: -1px
}
.mb-1 {
    margin-bottom: 0.25rem
}
.mb-2 {
    margin-bottom: 0.5rem
}
.mb-3 {
    margin-bottom: 0.75rem
}
.ml-1 {
    margin-left: 0.25rem
}
.ml-2 {
    margin-left: 0.5rem
}
.mr-2 {
    margin-right: 0.5rem
}
.mt-0\.5 {
    margin-top: 0.125rem
}
.mt-1 {
    margin-top: 0.25rem
}
.mt-2 {
    margin-top: 0.5rem
}
.mt-3 {
    margin-top: 0.75rem
}
.mt-4 {
    margin-top: 1rem
}
.mt-5 {
    margin-top: 1.25rem
}
.mt-8 {
    margin-top: 2rem
}
.\!block {
    display: block !important
}
.block {
    display: block
}
.inline-block {
    display: inline-block
}
.inline {
    display: inline
}
.flex {
    display: flex
}
.inline-flex {
    display: inline-flex
}
.table {
    display: table
}
.flow-root {
    display: flow-root
}
.grid {
    display: grid
}
.contents {
    display: contents
}
.hidden {
    display: none
}
.size-10 {
    width: 2.5rem;
    height: 2.5rem
}
.size-12 {
    width: 3rem;
    height: 3rem
}
.size-16 {
    width: 4rem;
    height: 4rem
}
.size-4 {
    width: 1rem;
    height: 1rem
}
.size-6 {
    width: 1.5rem;
    height: 1.5rem
}
.size-8 {
    width: 2rem;
    height: 2rem
}
.size-9 {
    width: 2.25rem;
    height: 2.25rem
}
.size-full {
    width: 100%;
    height: 100%
}
.h-1\/2 {
    height: 50%
}
.h-10 {
    height: 2.5rem
}
.h-2 {
    height: 0.5rem
}
.h-4 {
    height: 1rem
}
.h-8 {
    height: 2rem
}
.h-9 {
    height: 2.25rem
}
.h-full {
    height: 100%
}
.h-px {
    height: 1px
}
.h-screen {
    height: 100vh
}
.max-h-\[calc\(100vh-2rem\)\] {
    max-height: calc(100vh - 2rem)
}
.max-h-screen {
    max-height: 100vh
}
.min-h-20 {
    min-height: 5rem
}
.min-h-4 {
    min-height: 1rem
}
.min-h-full {
    min-height: 100%
}
.w-4 {
    width: 1rem
}
.w-8 {
    width: 2rem
}
.w-\[calc\(100\%-2rem\)\] {
    width: calc(100% - 2rem)
}
.w-fit {
    width: -webkit-fit-content;
    width: fit-content
}
.w-full {
    width: 100%
}
.w-px {
    width: 1px
}
.w-screen {
    width: 100vw
}
.min-w-0 {
    min-width: 0px
}
.min-w-40 {
    min-width: 10rem
}
.min-w-64 {
    min-width: 16rem
}
.max-w-2xl {
    max-width: 42rem
}
.max-w-4xl {
    max-width: 56rem
}
.max-w-5xl {
    max-width: 64rem
}
.max-w-6xl {
    max-width: 72rem
}
.max-w-7xl {
    max-width: 80rem
}
.max-w-lg {
    max-width: 32rem
}
.max-w-none {
    max-width: none
}
.max-w-sm {
    max-width: 24rem
}
.max-w-xs {
    max-width: 20rem
}
.shrink-0 {
    flex-shrink: 0
}
.caption-bottom {
    caption-side: bottom
}
.border-collapse {
    border-collapse: collapse
}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    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))
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    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))
}
.-rotate-90 {
    --tw-rotate: -90deg;
    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))
}
.\!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)) !important
}
.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))
}
@keyframes pulse {
    50% {
        opacity: .5
    }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite
}
@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}
.animate-spin {
    animation: spin 1s linear infinite
}
.cursor-pointer {
    cursor: pointer
}
.resize {
    resize: both
}
.flex-col {
    flex-direction: column
}
.flex-col-reverse {
    flex-direction: column-reverse
}
.flex-wrap {
    flex-wrap: wrap
}
.items-start {
    align-items: flex-start
}
.items-center {
    align-items: center
}
.items-stretch {
    align-items: stretch
}
.justify-end {
    justify-content: flex-end
}
.justify-center {
    justify-content: center
}
.justify-between {
    justify-content: space-between
}
.gap-1 {
    gap: 0.25rem
}
.gap-1\.5 {
    gap: 0.375rem
}
.gap-2 {
    gap: 0.5rem
}
.gap-3 {
    gap: 0.75rem
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse))
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse))
}
.self-stretch {
    align-self: stretch
}
.overflow-auto {
    overflow: auto
}
.overflow-hidden {
    overflow: hidden
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
.whitespace-nowrap {
    white-space: nowrap
}
.text-nowrap {
    text-wrap: nowrap
}
.break-all {
    word-break: break-all
}
.rounded {
    border-radius: 0.25rem
}
.rounded-full {
    border-radius: 9999px
}
.rounded-lg {
    border-radius: var(--radius)
}
.rounded-md {
    border-radius: calc(var(--radius) - 2px)
}
.rounded-none {
    border-radius: 0px
}
.rounded-sm {
    border-radius: calc(var(--radius) - 4px)
}
.rounded-xl {
    border-radius: 0.75rem
}
.rounded-r-md {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px)
}
.border {
    border-width: 1px
}
.border-0 {
    border-width: 0px
}
.border-2 {
    border-width: 2px
}
.border-b {
    border-bottom-width: 1px
}
.border-b-2 {
    border-bottom-width: 2px
}
.border-l {
    border-left-width: 1px
}
.border-r {
    border-right-width: 1px
}
.border-t {
    border-top-width: 1px
}
.border-\[var\(--ui-status-error-border\)\] {
    border-color: var(--ui-status-error-border)
}
.border-\[var\(--ui-status-info-border\)\] {
    border-color: var(--ui-status-info-border)
}
.border-\[var\(--ui-status-success-border\)\] {
    border-color: var(--ui-status-success-border)
}
.border-\[var\(--ui-status-warning-border\)\] {
    border-color: var(--ui-status-warning-border)
}
.border-border {
    border-color: var(--border)
}
.border-current {
    border-color: currentColor
}
.border-destructive {
    border-color: var(--destructive)
}
.border-foreground {
    border-color: var(--foreground)
}
.border-input {
    border-color: var(--input)
}
.border-primary {
    border-color: var(--primary)
}
.border-secondary {
    border-color: var(--secondary)
}
.border-transparent {
    border-color: transparent
}
.border-r-transparent {
    border-right-color: transparent
}
.bg-\[var\(--ui-status-error-surface\)\] {
    background-color: var(--ui-status-error-surface)
}
.bg-\[var\(--ui-status-info-surface\)\] {
    background-color: var(--ui-status-info-surface)
}
.bg-\[var\(--ui-status-success-surface\)\] {
    background-color: var(--ui-status-success-surface)
}
.bg-\[var\(--ui-status-warning-surface\)\] {
    background-color: var(--ui-status-warning-surface)
}
.bg-background {
    background-color: var(--background)
}
.bg-black\/50 {
    background-color: rgb(0 0 0 / 0.5)
}
.bg-border {
    background-color: var(--border)
}
.bg-card {
    background-color: var(--card)
}
.bg-destructive {
    background-color: var(--destructive)
}
.bg-input {
    background-color: var(--input)
}
.bg-muted {
    background-color: var(--muted)
}
.bg-popover {
    background-color: var(--popover)
}
.bg-primary {
    background-color: var(--primary)
}
.bg-secondary {
    background-color: var(--secondary)
}
.bg-transparent {
    background-color: transparent
}
.object-cover {
    object-fit: cover
}
.p-0 {
    padding: 0px
}
.p-1 {
    padding: 0.25rem
}
.p-4 {
    padding: 1rem
}
.p-6 {
    padding: 1.5rem
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
}
.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}
.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem
}
.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}
.pb-1 {
    padding-bottom: 0.25rem
}
.pb-2 {
    padding-bottom: 0.5rem
}
.pb-3 {
    padding-bottom: 0.75rem
}
.pb-4 {
    padding-bottom: 1rem
}
.pb-6 {
    padding-bottom: 1.5rem
}
.pl-3 {
    padding-left: 0.75rem
}
.pl-4 {
    padding-left: 1rem
}
.pr-3 {
    padding-right: 0.75rem
}
.pt-0 {
    padding-top: 0px
}
.pt-1 {
    padding-top: 0.25rem
}
.pt-2 {
    padding-top: 0.5rem
}
.pt-3 {
    padding-top: 0.75rem
}
.pt-4 {
    padding-top: 1rem
}
.pt-6 {
    padding-top: 1.5rem
}
.text-left {
    text-align: left
}
.text-center {
    text-align: center
}
.text-right {
    text-align: right
}
.align-middle {
    vertical-align: middle
}
.text-\[0\.6875rem\] {
    font-size: 0.6875rem
}
.text-\[10px\] {
    font-size: 10px
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem
}
.font-medium {
    font-weight: 500
}
.font-semibold {
    font-weight: 600
}
.uppercase {
    text-transform: uppercase
}
.lowercase {
    text-transform: lowercase
}
.capitalize {
    text-transform: capitalize
}
.normal-case {
    text-transform: none
}
.italic {
    font-style: italic
}
.ordinal {
    --tw-ordinal: ordinal;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
.tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
.leading-none {
    line-height: 1
}
.leading-relaxed {
    line-height: 1.625
}
.tracking-normal {
    letter-spacing: 0em
}
.text-\[var\(--ui-status-error-text\)\] {
    color: var(--ui-status-error-text)
}
.text-\[var\(--ui-status-info-text\)\] {
    color: var(--ui-status-info-text)
}
.text-\[var\(--ui-status-success-text\)\] {
    color: var(--ui-status-success-text)
}
.text-\[var\(--ui-status-warning-text\)\] {
    color: var(--ui-status-warning-text)
}
.text-card-foreground {
    color: var(--card-foreground)
}
.text-destructive {
    color: var(--destructive)
}
.text-destructive-foreground {
    color: var(--destructive-foreground)
}
.text-foreground {
    color: var(--foreground)
}
.text-muted {
    color: var(--muted)
}
.text-muted-foreground {
    color: var(--muted-foreground)
}
.text-popover-foreground {
    color: var(--popover-foreground)
}
.text-primary {
    color: var(--primary)
}
.text-primary-foreground {
    color: var(--primary-foreground)
}
.text-secondary-foreground {
    color: var(--secondary-foreground)
}
.underline {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline
}
.line-through {
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through
}
.underline-offset-4 {
    text-underline-offset: 4px
}
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.accent-foreground {
    accent-color: var(--foreground)
}
.accent-primary {
    accent-color: var(--primary)
}
.opacity-0 {
    opacity: 0
}
.opacity-70 {
    opacity: 0.7
}
.opacity-75 {
    opacity: 0.75
}
.opacity-90 {
    opacity: 0.9
}
.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.shadow-floating {
    --tw-shadow: var(--ui-shadow-floating);
    --tw-shadow-colored: var(--ui-shadow-floating);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}
.outline {
    outline-style: solid
}
.ring {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
.ring-offset-background {
    --tw-ring-offset-color: var(--background)
}
.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)
}
.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)
}
.\!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)
}
.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -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, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -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-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.transition-\[stroke-dashoffset\] {
    transition-property: stroke-dashoffset;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.duration-200 {
    transition-duration: 200ms
}
.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}
.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}
.\[hybrid\:rules\] {
    hybrid: rules
}
.placeholder\:text-muted-foreground:-ms-input-placeholder {
    color: var(--muted-foreground)
}
.placeholder\:text-muted-foreground::placeholder {
    color: var(--muted-foreground)
}
.first\:rounded-l-md:first-child {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px)
}
.last\:rounded-r-md:last-child {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px)
}
.hover\:-translate-y-0\.5:hover {
    --tw-translate-y: -0.125rem;
    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))
}
.hover\:-translate-y-px:hover {
    --tw-translate-y: -1px;
    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))
}
.hover\:border-blue-500:hover {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1))
}
.hover\:border-border:hover {
    border-color: var(--border)
}
.hover\:border-foreground:hover {
    border-color: var(--foreground)
}
.hover\:border-primary:hover {
    border-color: var(--primary)
}
.hover\:bg-accent:hover {
    background-color: var(--accent)
}
.hover\:bg-muted:hover {
    background-color: var(--muted)
}
.hover\:text-accent-foreground:hover {
    color: var(--accent-foreground)
}
.hover\:text-destructive:hover {
    color: var(--destructive)
}
.hover\:underline:hover {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline
}
.hover\:opacity-100:hover {
    opacity: 1
}
.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.hover\:shadow-md:hover {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}
.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
.focus\:ring-ring:focus {
    --tw-ring-color: var(--ring)
}
.focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px
}
.focus-visible\:border-blue-500:focus-visible {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1))
}
.focus-visible\:border-foreground:focus-visible {
    border-color: var(--foreground)
}
.focus-visible\:border-primary:focus-visible {
    border-color: var(--primary)
}
.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px
}
.focus-visible\:ring-1:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
.focus-visible\:ring-2:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
.focus-visible\:ring-blue-500:focus-visible {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1))
}
.focus-visible\:ring-border:focus-visible {
    --tw-ring-color: var(--border)
}
.focus-visible\:ring-foreground:focus-visible {
    --tw-ring-color: var(--foreground)
}
.focus-visible\:ring-primary:focus-visible {
    --tw-ring-color: var(--primary)
}
.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: var(--ring)
}
.focus-visible\:ring-offset-1:focus-visible {
    --tw-ring-offset-width: 1px
}
.focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px
}
.active\:scale-95:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    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))
}
.active\:scale-\[0\.98\]:active {
    --tw-scale-x: 0.98;
    --tw-scale-y: 0.98;
    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))
}
.active\:scale-\[0\.99\]:active {
    --tw-scale-x: 0.99;
    --tw-scale-y: 0.99;
    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))
}
.disabled\:pointer-events-none:disabled {
    pointer-events: none
}
.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed
}
.disabled\:opacity-40:disabled {
    opacity: 0.4
}
.disabled\:opacity-50:disabled {
    opacity: 0.5
}
.aria-disabled\:pointer-events-none[aria-disabled="true"] {
    pointer-events: none
}
.aria-disabled\:opacity-50[aria-disabled="true"] {
    opacity: 0.5
}
.data-\[state\=active\]\:border-foreground[data-state="active"] {
    border-color: var(--foreground)
}
.data-\[state\=active\]\:bg-background[data-state="active"] {
    background-color: var(--background)
}
.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
    background-color: var(--muted)
}
.data-\[state\=active\]\:text-foreground[data-state="active"] {
    color: var(--foreground)
}
.data-\[state\=active\]\:shadow-sm[data-state="active"] {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row
    }
    .sm\:justify-end {
        justify-content: flex-end
    }
}
.\[\&\>\*\]\:h-full>* {
    height: 100%
}
.\[\&\>\*\]\:w-full>* {
    width: 100%
}
.\[\&\>svg\]\:size-4>svg {
    width: 1rem;
    height: 1rem
}
.\[\&\>svg\]\:h-full>svg {
    height: 100%
}
.\[\&\>svg\]\:w-full>svg {
    width: 100%
}
.\[\&\>svg\]\:translate-y-0\.5>svg {
    --tw-translate-y: 0.125rem;
    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))
}
.\[\&\>svg\]\:text-current>svg {
    color: currentColor
}
.\[\&_svg\]\:pointer-events-none svg {
    pointer-events: none
}
.\[\&_svg\]\:size-4 svg {
    width: 1rem;
    height: 1rem
}
.\[\&_svg\]\:shrink-0 svg {
    flex-shrink: 0
}
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
    border-width: 0px
}
.\[\&_tr\]\:border-b tr {
    border-bottom-width: 1px
}

.shared-ui {
  box-sizing: border-box;
}

.shared-ui *,
.shared-ui *::before,
.shared-ui *::after {
  box-sizing: border-box;
}

