/**
 * Material Theme CSS
 *
 * Static CSS file for Material theme.
 * Can be imported at build time for SSR or when JS theming is not needed.
 *
 * @usage import '@smrt/svelte/themes/styles/material.css';
 */

/* Common/shared variables for Material theme (both light and dark) */
[data-theme="material"] {
  /* Border Radius */
  --smrt-radius-none: 0;
  --smrt-radius-sm: 0.25rem;
  --smrt-radius-md: 0.5rem;
  --smrt-radius-lg: 0.75rem;
  --smrt-radius-xl: 1rem;
  --smrt-radius-2xl: 1.5rem;
  --smrt-radius-3xl: 2rem;
  --smrt-radius-full: 9999px;

  /* Spacing (numeric scale) */
  --smrt-spacing-0: 0;
  --smrt-spacing-0_5: 0.125rem;
  --smrt-spacing-1: 0.25rem;
  --smrt-spacing-1_5: 0.375rem;
  --smrt-spacing-2: 0.5rem;
  --smrt-spacing-2_5: 0.625rem;
  --smrt-spacing-3: 0.75rem;
  --smrt-spacing-3_5: 0.875rem;
  --smrt-spacing-4: 1rem;
  --smrt-spacing-5: 1.25rem;
  --smrt-spacing-6: 1.5rem;
  --smrt-spacing-7: 1.75rem;
  --smrt-spacing-8: 2rem;
  --smrt-spacing-9: 2.25rem;
  --smrt-spacing-10: 2.5rem;
  --smrt-spacing-11: 2.75rem;
  --smrt-spacing-12: 3rem;
  --smrt-spacing-14: 3.5rem;
  --smrt-spacing-16: 4rem;
  --smrt-spacing-20: 5rem;
  --smrt-spacing-24: 6rem;

  /* Elevation (shared between light and dark) */
  --smrt-elevation-0: none;
  --smrt-elevation-1: 0 1px 2px 0 rgb(0 0 0 / 0.05), 0 1px 3px 0 rgb(0 0 0 / 0.02);
  --smrt-elevation-2: 0 1px 2px 0 rgb(0 0 0 / 0.06), 0 2px 4px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-3: 0 2px 4px 0 rgb(0 0 0 / 0.06), 0 4px 8px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-4: 0 4px 8px 0 rgb(0 0 0 / 0.08), 0 8px 16px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-5: 0 8px 16px 0 rgb(0 0 0 / 0.1), 0 16px 32px 0 rgb(0 0 0 / 0.04);

  /* Duration (shared between light and dark) */
  --smrt-duration-instant: 0ms;
  --smrt-duration-fast: 100ms;
  --smrt-duration-normal: 200ms;
  --smrt-duration-slow: 300ms;
  --smrt-duration-slower: 500ms;

  /* Easing (shared between light and dark) */
  --smrt-easing-standard: cubic-bezier(0.2, 0, 0, 1);
  --smrt-easing-standard-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --smrt-easing-standard-accelerate: cubic-bezier(0.3, 0, 1, 1);
  --smrt-easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --smrt-easing-emphasized-decelerate: cubic-bezier(0.05, 0.7, 0.1, 1);
  --smrt-easing-emphasized-accelerate: cubic-bezier(0.3, 0, 0.8, 0.15);
}

[data-theme="material"][data-color-scheme="light"] {
  --smrt-theme-id: material;
  --smrt-theme-name: Material;
  --smrt-color-scheme: light;
  --smrt-font-family: "Google Sans", "Roboto", system-ui, -apple-system, sans-serif;
  --smrt-color-primary: #0b57d0;
  --smrt-color-on-primary: #ffffff;
  --smrt-color-primary-container: #d3e3fd;
  --smrt-color-on-primary-container: #041e49;
  --smrt-color-secondary: #5e5e5e;
  --smrt-color-on-secondary: #ffffff;
  --smrt-color-secondary-container: #f0f0f0;
  --smrt-color-on-secondary-container: #1f1f1f;
  --smrt-color-tertiary: #7c4dff;
  --smrt-color-on-tertiary: #ffffff;
  --smrt-color-tertiary-container: #e8ddff;
  --smrt-color-on-tertiary-container: #1e005f;
  --smrt-color-error: #b3261e;
  --smrt-color-on-error: #ffffff;
  --smrt-color-error-container: #f9dedc;
  --smrt-color-on-error-container: #410e0b;
  --smrt-color-warning: #f9ab00;
  --smrt-color-on-warning: #000000;
  --smrt-color-warning-container: #fff4d9;
  --smrt-color-on-warning-container: #3d2a00;
  --smrt-color-success: #1e8e3e;
  --smrt-color-on-success: #ffffff;
  --smrt-color-success-container: #e6f4ea;
  --smrt-color-on-success-container: #1e4620;
  --smrt-color-surface: #ffffff;
  --smrt-color-on-surface: #1f1f1f;
  --smrt-color-surface-variant: #f2f2f2;
  --smrt-color-on-surface-variant: #444746;
  --smrt-color-surface-container: #f0f4f8;
  --smrt-color-surface-container-low: #f8f9fa;
  --smrt-color-surface-container-high: #e8eaed;
  --smrt-color-surface-container-highest: #e1e3e6;
  --smrt-color-surface-container-lowest: #ffffff;
  --smrt-color-surface-dim: #dadce0;
  --smrt-color-surface-bright: #f8f9fa;
  --smrt-color-background: #ffffff;
  --smrt-color-on-background: #1f1f1f;
  --smrt-color-outline: #747775;
  --smrt-color-outline-variant: #c4c7c5;
  --smrt-color-inverse-surface: #303133;
  --smrt-color-inverse-on-surface: #f2f2f2;
  --smrt-color-inverse-primary: #a8c7fa;
  --smrt-color-shadow: #000000;
  --smrt-color-scrim: rgba(0, 0, 0, 0.5);
  --smrt-typography-display-large-size: 3.5rem;
  --smrt-typography-display-large-line-height: 1.1;
  --smrt-typography-display-large-weight: 400;
  --smrt-typography-display-large-tracking: -0.02em;
  --smrt-typography-display-large-font-family: var(--smrt-font-family);
  --smrt-typography-display-large-font: 400 3.5rem/1.1 var(--smrt-font-family);
  --smrt-typography-display-medium-size: 2.75rem;
  --smrt-typography-display-medium-line-height: 1.15;
  --smrt-typography-display-medium-weight: 400;
  --smrt-typography-display-medium-tracking: -0.01em;
  --smrt-typography-display-medium-font-family: var(--smrt-font-family);
  --smrt-typography-display-medium-font: 400 2.75rem/1.15 var(--smrt-font-family);
  --smrt-typography-display-small-size: 2.25rem;
  --smrt-typography-display-small-line-height: 1.2;
  --smrt-typography-display-small-weight: 400;
  --smrt-typography-display-small-tracking: 0;
  --smrt-typography-display-small-font-family: var(--smrt-font-family);
  --smrt-typography-display-small-font: 400 2.25rem/1.2 var(--smrt-font-family);
  --smrt-typography-headline-large-size: 2rem;
  --smrt-typography-headline-large-line-height: 1.25;
  --smrt-typography-headline-large-weight: 400;
  --smrt-typography-headline-large-tracking: 0;
  --smrt-typography-headline-large-font-family: var(--smrt-font-family);
  --smrt-typography-headline-large-font: 400 2rem/1.25 var(--smrt-font-family);
  --smrt-typography-headline-medium-size: 1.75rem;
  --smrt-typography-headline-medium-line-height: 1.3;
  --smrt-typography-headline-medium-weight: 400;
  --smrt-typography-headline-medium-tracking: 0;
  --smrt-typography-headline-medium-font-family: var(--smrt-font-family);
  --smrt-typography-headline-medium-font: 400 1.75rem/1.3 var(--smrt-font-family);
  --smrt-typography-headline-small-size: 1.5rem;
  --smrt-typography-headline-small-line-height: 1.35;
  --smrt-typography-headline-small-weight: 400;
  --smrt-typography-headline-small-tracking: 0;
  --smrt-typography-headline-small-font-family: var(--smrt-font-family);
  --smrt-typography-headline-small-font: 400 1.5rem/1.35 var(--smrt-font-family);
  --smrt-typography-title-large-size: 1.375rem;
  --smrt-typography-title-large-line-height: 1.4;
  --smrt-typography-title-large-weight: 500;
  --smrt-typography-title-large-tracking: 0;
  --smrt-typography-title-large-font-family: var(--smrt-font-family);
  --smrt-typography-title-large-font: 500 1.375rem/1.4 var(--smrt-font-family);
  --smrt-typography-title-medium-size: 1rem;
  --smrt-typography-title-medium-line-height: 1.5;
  --smrt-typography-title-medium-weight: 500;
  --smrt-typography-title-medium-tracking: 0.01em;
  --smrt-typography-title-medium-font-family: var(--smrt-font-family);
  --smrt-typography-title-medium-font: 500 1rem/1.5 var(--smrt-font-family);
  --smrt-typography-title-small-size: 0.875rem;
  --smrt-typography-title-small-line-height: 1.5;
  --smrt-typography-title-small-weight: 500;
  --smrt-typography-title-small-tracking: 0.01em;
  --smrt-typography-title-small-font-family: var(--smrt-font-family);
  --smrt-typography-title-small-font: 500 0.875rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-large-size: 1rem;
  --smrt-typography-body-large-line-height: 1.5;
  --smrt-typography-body-large-weight: 400;
  --smrt-typography-body-large-tracking: 0.03em;
  --smrt-typography-body-large-font-family: var(--smrt-font-family);
  --smrt-typography-body-large-font: 400 1rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-medium-size: 0.875rem;
  --smrt-typography-body-medium-line-height: 1.5;
  --smrt-typography-body-medium-weight: 400;
  --smrt-typography-body-medium-tracking: 0.02em;
  --smrt-typography-body-medium-font-family: var(--smrt-font-family);
  --smrt-typography-body-medium-font: 400 0.875rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-small-size: 0.75rem;
  --smrt-typography-body-small-line-height: 1.4;
  --smrt-typography-body-small-weight: 400;
  --smrt-typography-body-small-tracking: 0.03em;
  --smrt-typography-body-small-font-family: var(--smrt-font-family);
  --smrt-typography-body-small-font: 400 0.75rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-large-size: 0.875rem;
  --smrt-typography-label-large-line-height: 1.4;
  --smrt-typography-label-large-weight: 500;
  --smrt-typography-label-large-tracking: 0.01em;
  --smrt-typography-label-large-font-family: var(--smrt-font-family);
  --smrt-typography-label-large-font: 500 0.875rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-medium-size: 0.75rem;
  --smrt-typography-label-medium-line-height: 1.4;
  --smrt-typography-label-medium-weight: 500;
  --smrt-typography-label-medium-tracking: 0.05em;
  --smrt-typography-label-medium-font-family: var(--smrt-font-family);
  --smrt-typography-label-medium-font: 500 0.75rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-small-size: 0.6875rem;
  --smrt-typography-label-small-line-height: 1.4;
  --smrt-typography-label-small-weight: 500;
  --smrt-typography-label-small-tracking: 0.05em;
  --smrt-typography-label-small-font-family: var(--smrt-font-family);
  --smrt-typography-label-small-font: 500 0.6875rem/1.4 var(--smrt-font-family);
  --smrt-spacing-0: 0;
  --smrt-spacing-1: 0.25rem;
  --smrt-spacing-2: 0.5rem;
  --smrt-spacing-3: 0.75rem;
  --smrt-spacing-4: 1rem;
  --smrt-spacing-5: 1.25rem;
  --smrt-spacing-6: 1.5rem;
  --smrt-spacing-7: 1.75rem;
  --smrt-spacing-8: 2rem;
  --smrt-spacing-9: 2.25rem;
  --smrt-spacing-10: 2.5rem;
  --smrt-spacing-11: 2.75rem;
  --smrt-spacing-12: 3rem;
  --smrt-spacing-14: 3.5rem;
  --smrt-spacing-16: 4rem;
  --smrt-spacing-20: 5rem;
  --smrt-spacing-24: 6rem;
  --smrt-spacing-0_5: 0.125rem;
  --smrt-spacing-1_5: 0.375rem;
  --smrt-spacing-2_5: 0.625rem;
  --smrt-spacing-3_5: 0.875rem;
  --smrt-spacing-xs: 0.25rem;
  --smrt-spacing-sm: 0.5rem;
  --smrt-spacing-md: 1rem;
  --smrt-spacing-lg: 1.5rem;
  --smrt-spacing-xl: 2rem;
  --smrt-spacing-2xl: 3rem;
  --smrt-spacing-3xl: 4rem;
  --smrt-radius-none: 0;
  --smrt-radius-sm: 0.25rem;
  --smrt-radius-md: 0.5rem;
  --smrt-radius-lg: 0.75rem;
  --smrt-radius-xl: 1rem;
  --smrt-radius-2xl: 1.5rem;
  --smrt-radius-3xl: 2rem;
  --smrt-radius-full: 9999px;
  --smrt-radius-extra-small: 0.25rem;
  --smrt-radius-small: 0.25rem;
  --smrt-radius-medium: 0.5rem;
  --smrt-radius-large: 0.75rem;
  --smrt-radius-extra-large: 1rem;
  --smrt-elevation-0: none;
  --smrt-elevation-1: 0 1px 2px 0 rgb(0 0 0 / 0.05), 0 1px 3px 0 rgb(0 0 0 / 0.02);
  --smrt-elevation-2: 0 1px 2px 0 rgb(0 0 0 / 0.06), 0 2px 4px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-3: 0 2px 4px 0 rgb(0 0 0 / 0.06), 0 4px 8px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-4: 0 4px 8px 0 rgb(0 0 0 / 0.08), 0 8px 16px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-5: 0 8px 16px 0 rgb(0 0 0 / 0.1), 0 16px 32px 0 rgb(0 0 0 / 0.04);
  --smrt-duration-instant: 0ms;
  --smrt-duration-fast: 100ms;
  --smrt-duration-normal: 200ms;
  --smrt-duration-slow: 300ms;
  --smrt-duration-slower: 500ms;
  --smrt-duration-short1: 50ms;
  --smrt-duration-short2: 100ms;
  --smrt-duration-short3: 150ms;
  --smrt-duration-short4: 200ms;
  --smrt-duration-medium1: 250ms;
  --smrt-duration-medium2: 300ms;
  --smrt-duration-medium3: 350ms;
  --smrt-duration-medium4: 400ms;
  --smrt-duration-long1: 450ms;
  --smrt-duration-long2: 500ms;
  --smrt-duration-long3: 550ms;
  --smrt-duration-long4: 600ms;
  --smrt-easing-standard: cubic-bezier(0.2, 0, 0, 1);
  --smrt-easing-standard-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --smrt-easing-standard-accelerate: cubic-bezier(0.3, 0, 1, 1);
  --smrt-easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --smrt-easing-emphasized-decelerate: cubic-bezier(0.05, 0.7, 0.1, 1);
  --smrt-easing-emphasized-accelerate: cubic-bezier(0.3, 0, 0.8, 0.15);
  --smrt-font-family-mono: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Consolas", monospace;
  --smrt-typography-weight-normal: 400;
  --smrt-typography-weight-medium: 500;
  --smrt-typography-weight-semibold: 600;
  --smrt-typography-weight-bold: 700;
  --smrt-z-index-dropdown: 1000;
  --smrt-z-index-sticky: 1100;
  --smrt-z-index-overlay: 1200;
  --smrt-z-index-modal: 1300;
  --smrt-z-index-dialog: 1300;
  --smrt-z-index-popover: 1400;
  --smrt-z-index-toast: 1500;
  --smrt-z-index-tooltip: 1600;
  --smrt-z-index-loading: 1700;
}

[data-theme="material"][data-color-scheme="dark"] {
  --smrt-theme-id: material;
  --smrt-theme-name: Material;
  --smrt-color-scheme: dark;
  --smrt-font-family: "Google Sans", "Roboto", system-ui, -apple-system, sans-serif;
  --smrt-color-primary: #a8c7fa;
  --smrt-color-on-primary: #062e6f;
  --smrt-color-primary-container: #0842a0;
  --smrt-color-on-primary-container: #d3e3fd;
  --smrt-color-secondary: #c7c7c7;
  --smrt-color-on-secondary: #303133;
  --smrt-color-secondary-container: #444746;
  --smrt-color-on-secondary-container: #e3e3e3;
  --smrt-color-tertiary: #cbb7ff;
  --smrt-color-on-tertiary: #3e1e96;
  --smrt-color-tertiary-container: #5e3fc0;
  --smrt-color-on-tertiary-container: #e8ddff;
  --smrt-color-error: #f2b8b5;
  --smrt-color-on-error: #601410;
  --smrt-color-error-container: #8c1d18;
  --smrt-color-on-error-container: #f9dedc;
  --smrt-color-warning: #ffcd66;
  --smrt-color-on-warning: #5c3d00;
  --smrt-color-warning-container: #8a5d00;
  --smrt-color-on-warning-container: #fff4d9;
  --smrt-color-success: #81c995;
  --smrt-color-on-success: #0d522d;
  --smrt-color-success-container: #1e4620;
  --smrt-color-on-success-container: #e6f4ea;
  --smrt-color-surface: #0e0e0e;
  --smrt-color-on-surface: #e3e3e3;
  --smrt-color-surface-variant: #1f1f1f;
  --smrt-color-on-surface-variant: #c4c7c5;
  --smrt-color-surface-container: #1f1f1f;
  --smrt-color-surface-container-low: #141414;
  --smrt-color-surface-container-high: #2d2d2d;
  --smrt-color-surface-container-highest: #363636;
  --smrt-color-surface-container-lowest: #0a0a0a;
  --smrt-color-surface-dim: #141414;
  --smrt-color-surface-bright: #2d2d2d;
  --smrt-color-background: #0e0e0e;
  --smrt-color-on-background: #e3e3e3;
  --smrt-color-outline: #8e918f;
  --smrt-color-outline-variant: #444746;
  --smrt-color-inverse-surface: #e3e3e3;
  --smrt-color-inverse-on-surface: #1f1f1f;
  --smrt-color-inverse-primary: #0b57d0;
  --smrt-color-shadow: #000000;
  --smrt-color-scrim: rgba(0, 0, 0, 0.7);
  --smrt-typography-display-large-size: 3.5rem;
  --smrt-typography-display-large-line-height: 1.1;
  --smrt-typography-display-large-weight: 400;
  --smrt-typography-display-large-tracking: -0.02em;
  --smrt-typography-display-large-font-family: var(--smrt-font-family);
  --smrt-typography-display-large-font: 400 3.5rem/1.1 var(--smrt-font-family);
  --smrt-typography-display-medium-size: 2.75rem;
  --smrt-typography-display-medium-line-height: 1.15;
  --smrt-typography-display-medium-weight: 400;
  --smrt-typography-display-medium-tracking: -0.01em;
  --smrt-typography-display-medium-font-family: var(--smrt-font-family);
  --smrt-typography-display-medium-font: 400 2.75rem/1.15 var(--smrt-font-family);
  --smrt-typography-display-small-size: 2.25rem;
  --smrt-typography-display-small-line-height: 1.2;
  --smrt-typography-display-small-weight: 400;
  --smrt-typography-display-small-tracking: 0;
  --smrt-typography-display-small-font-family: var(--smrt-font-family);
  --smrt-typography-display-small-font: 400 2.25rem/1.2 var(--smrt-font-family);
  --smrt-typography-headline-large-size: 2rem;
  --smrt-typography-headline-large-line-height: 1.25;
  --smrt-typography-headline-large-weight: 400;
  --smrt-typography-headline-large-tracking: 0;
  --smrt-typography-headline-large-font-family: var(--smrt-font-family);
  --smrt-typography-headline-large-font: 400 2rem/1.25 var(--smrt-font-family);
  --smrt-typography-headline-medium-size: 1.75rem;
  --smrt-typography-headline-medium-line-height: 1.3;
  --smrt-typography-headline-medium-weight: 400;
  --smrt-typography-headline-medium-tracking: 0;
  --smrt-typography-headline-medium-font-family: var(--smrt-font-family);
  --smrt-typography-headline-medium-font: 400 1.75rem/1.3 var(--smrt-font-family);
  --smrt-typography-headline-small-size: 1.5rem;
  --smrt-typography-headline-small-line-height: 1.35;
  --smrt-typography-headline-small-weight: 400;
  --smrt-typography-headline-small-tracking: 0;
  --smrt-typography-headline-small-font-family: var(--smrt-font-family);
  --smrt-typography-headline-small-font: 400 1.5rem/1.35 var(--smrt-font-family);
  --smrt-typography-title-large-size: 1.375rem;
  --smrt-typography-title-large-line-height: 1.4;
  --smrt-typography-title-large-weight: 500;
  --smrt-typography-title-large-tracking: 0;
  --smrt-typography-title-large-font-family: var(--smrt-font-family);
  --smrt-typography-title-large-font: 500 1.375rem/1.4 var(--smrt-font-family);
  --smrt-typography-title-medium-size: 1rem;
  --smrt-typography-title-medium-line-height: 1.5;
  --smrt-typography-title-medium-weight: 500;
  --smrt-typography-title-medium-tracking: 0.01em;
  --smrt-typography-title-medium-font-family: var(--smrt-font-family);
  --smrt-typography-title-medium-font: 500 1rem/1.5 var(--smrt-font-family);
  --smrt-typography-title-small-size: 0.875rem;
  --smrt-typography-title-small-line-height: 1.5;
  --smrt-typography-title-small-weight: 500;
  --smrt-typography-title-small-tracking: 0.01em;
  --smrt-typography-title-small-font-family: var(--smrt-font-family);
  --smrt-typography-title-small-font: 500 0.875rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-large-size: 1rem;
  --smrt-typography-body-large-line-height: 1.5;
  --smrt-typography-body-large-weight: 400;
  --smrt-typography-body-large-tracking: 0.03em;
  --smrt-typography-body-large-font-family: var(--smrt-font-family);
  --smrt-typography-body-large-font: 400 1rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-medium-size: 0.875rem;
  --smrt-typography-body-medium-line-height: 1.5;
  --smrt-typography-body-medium-weight: 400;
  --smrt-typography-body-medium-tracking: 0.02em;
  --smrt-typography-body-medium-font-family: var(--smrt-font-family);
  --smrt-typography-body-medium-font: 400 0.875rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-small-size: 0.75rem;
  --smrt-typography-body-small-line-height: 1.4;
  --smrt-typography-body-small-weight: 400;
  --smrt-typography-body-small-tracking: 0.03em;
  --smrt-typography-body-small-font-family: var(--smrt-font-family);
  --smrt-typography-body-small-font: 400 0.75rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-large-size: 0.875rem;
  --smrt-typography-label-large-line-height: 1.4;
  --smrt-typography-label-large-weight: 500;
  --smrt-typography-label-large-tracking: 0.01em;
  --smrt-typography-label-large-font-family: var(--smrt-font-family);
  --smrt-typography-label-large-font: 500 0.875rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-medium-size: 0.75rem;
  --smrt-typography-label-medium-line-height: 1.4;
  --smrt-typography-label-medium-weight: 500;
  --smrt-typography-label-medium-tracking: 0.05em;
  --smrt-typography-label-medium-font-family: var(--smrt-font-family);
  --smrt-typography-label-medium-font: 500 0.75rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-small-size: 0.6875rem;
  --smrt-typography-label-small-line-height: 1.4;
  --smrt-typography-label-small-weight: 500;
  --smrt-typography-label-small-tracking: 0.05em;
  --smrt-typography-label-small-font-family: var(--smrt-font-family);
  --smrt-typography-label-small-font: 500 0.6875rem/1.4 var(--smrt-font-family);
  --smrt-spacing-0: 0;
  --smrt-spacing-1: 0.25rem;
  --smrt-spacing-2: 0.5rem;
  --smrt-spacing-3: 0.75rem;
  --smrt-spacing-4: 1rem;
  --smrt-spacing-5: 1.25rem;
  --smrt-spacing-6: 1.5rem;
  --smrt-spacing-7: 1.75rem;
  --smrt-spacing-8: 2rem;
  --smrt-spacing-9: 2.25rem;
  --smrt-spacing-10: 2.5rem;
  --smrt-spacing-11: 2.75rem;
  --smrt-spacing-12: 3rem;
  --smrt-spacing-14: 3.5rem;
  --smrt-spacing-16: 4rem;
  --smrt-spacing-20: 5rem;
  --smrt-spacing-24: 6rem;
  --smrt-spacing-0_5: 0.125rem;
  --smrt-spacing-1_5: 0.375rem;
  --smrt-spacing-2_5: 0.625rem;
  --smrt-spacing-3_5: 0.875rem;
  --smrt-spacing-xs: 0.25rem;
  --smrt-spacing-sm: 0.5rem;
  --smrt-spacing-md: 1rem;
  --smrt-spacing-lg: 1.5rem;
  --smrt-spacing-xl: 2rem;
  --smrt-spacing-2xl: 3rem;
  --smrt-spacing-3xl: 4rem;
  --smrt-radius-none: 0;
  --smrt-radius-sm: 0.25rem;
  --smrt-radius-md: 0.5rem;
  --smrt-radius-lg: 0.75rem;
  --smrt-radius-xl: 1rem;
  --smrt-radius-2xl: 1.5rem;
  --smrt-radius-3xl: 2rem;
  --smrt-radius-full: 9999px;
  --smrt-radius-extra-small: 0.25rem;
  --smrt-radius-small: 0.25rem;
  --smrt-radius-medium: 0.5rem;
  --smrt-radius-large: 0.75rem;
  --smrt-radius-extra-large: 1rem;
  --smrt-elevation-0: none;
  --smrt-elevation-1: 0 1px 2px 0 rgb(0 0 0 / 0.05), 0 1px 3px 0 rgb(0 0 0 / 0.02);
  --smrt-elevation-2: 0 1px 2px 0 rgb(0 0 0 / 0.06), 0 2px 4px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-3: 0 2px 4px 0 rgb(0 0 0 / 0.06), 0 4px 8px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-4: 0 4px 8px 0 rgb(0 0 0 / 0.08), 0 8px 16px 0 rgb(0 0 0 / 0.04);
  --smrt-elevation-5: 0 8px 16px 0 rgb(0 0 0 / 0.1), 0 16px 32px 0 rgb(0 0 0 / 0.04);
  --smrt-duration-instant: 0ms;
  --smrt-duration-fast: 100ms;
  --smrt-duration-normal: 200ms;
  --smrt-duration-slow: 300ms;
  --smrt-duration-slower: 500ms;
  --smrt-duration-short1: 50ms;
  --smrt-duration-short2: 100ms;
  --smrt-duration-short3: 150ms;
  --smrt-duration-short4: 200ms;
  --smrt-duration-medium1: 250ms;
  --smrt-duration-medium2: 300ms;
  --smrt-duration-medium3: 350ms;
  --smrt-duration-medium4: 400ms;
  --smrt-duration-long1: 450ms;
  --smrt-duration-long2: 500ms;
  --smrt-duration-long3: 550ms;
  --smrt-duration-long4: 600ms;
  --smrt-easing-standard: cubic-bezier(0.2, 0, 0, 1);
  --smrt-easing-standard-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --smrt-easing-standard-accelerate: cubic-bezier(0.3, 0, 1, 1);
  --smrt-easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
  --smrt-easing-emphasized-decelerate: cubic-bezier(0.05, 0.7, 0.1, 1);
  --smrt-easing-emphasized-accelerate: cubic-bezier(0.3, 0, 0.8, 0.15);
  --smrt-font-family-mono: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Consolas", monospace;
  --smrt-typography-weight-normal: 400;
  --smrt-typography-weight-medium: 500;
  --smrt-typography-weight-semibold: 600;
  --smrt-typography-weight-bold: 700;
  --smrt-z-index-dropdown: 1000;
  --smrt-z-index-sticky: 1100;
  --smrt-z-index-overlay: 1200;
  --smrt-z-index-modal: 1300;
  --smrt-z-index-dialog: 1300;
  --smrt-z-index-popover: 1400;
  --smrt-z-index-toast: 1500;
  --smrt-z-index-tooltip: 1600;
  --smrt-z-index-loading: 1700;
}

/*
 * Material-3 vocabulary aliases + helper tokens (issue #1431).
 * Scheme-independent, so declared once on the theme selector. These mirror the
 * additive aliases emitted by src/themes/css-generator.ts so the static-CSS
 * delivery path resolves the same consumed tokens as the JS ThemeProvider.
 * Radius aliases reference the canonical t-shirt tokens so a preset that
 * retunes its radius scale updates the aliases automatically.
 */
[data-theme="material"] {
  /* Radius aliases -> canonical t-shirt scale */
  --smrt-radius-extra-small: var(--smrt-radius-sm);
  --smrt-radius-small: var(--smrt-radius-sm);
  --smrt-radius-medium: var(--smrt-radius-md);
  --smrt-radius-large: var(--smrt-radius-lg);
  --smrt-radius-extra-large: var(--smrt-radius-xl);

  /* Spacing aliases (named -> numeric-scale values) */
  --smrt-spacing-xs: var(--smrt-spacing-1);
  --smrt-spacing-sm: var(--smrt-spacing-2);
  --smrt-spacing-md: var(--smrt-spacing-4);
  --smrt-spacing-lg: var(--smrt-spacing-6);
  --smrt-spacing-xl: var(--smrt-spacing-8);
  --smrt-spacing-2xl: var(--smrt-spacing-12);
  --smrt-spacing-3xl: var(--smrt-spacing-16);

  /* Motion duration aliases (M3 short1..long4) */
  --smrt-duration-short1: 50ms;
  --smrt-duration-short2: 100ms;
  --smrt-duration-short3: 150ms;
  --smrt-duration-short4: 200ms;
  --smrt-duration-medium1: 250ms;
  --smrt-duration-medium2: 300ms;
  --smrt-duration-medium3: 350ms;
  --smrt-duration-medium4: 400ms;
  --smrt-duration-long1: 450ms;
  --smrt-duration-long2: 500ms;
  --smrt-duration-long3: 550ms;
  --smrt-duration-long4: 600ms;

  /* Helper tokens */
  --smrt-font-family-mono: ui-monospace, "SF Mono", "Monaco", "Cascadia Code", "Consolas", monospace;
  --smrt-typography-weight-normal: 400;
  --smrt-typography-weight-medium: 500;
  --smrt-typography-weight-semibold: 600;
  --smrt-typography-weight-bold: 700;
  --smrt-z-index-dropdown: 1000;
  --smrt-z-index-sticky: 1100;
  --smrt-z-index-overlay: 1200;
  --smrt-z-index-modal: 1300;
  --smrt-z-index-dialog: 1300;
  --smrt-z-index-popover: 1400;
  --smrt-z-index-toast: 1500;
  --smrt-z-index-tooltip: 1600;
  --smrt-z-index-loading: 1700;

  /* Typography (issue #1431): full scale incl. `font` shorthand,
     so the static-CSS path matches the JS ThemeProvider output) */
  --smrt-typography-display-large-size: 3.5rem;
  --smrt-typography-display-large-line-height: 1.1;
  --smrt-typography-display-large-weight: 400;
  --smrt-typography-display-large-tracking: -0.02em;
  --smrt-typography-display-large-font-family: var(--smrt-font-family);
  --smrt-typography-display-large-font: 400 3.5rem/1.1 var(--smrt-font-family);
  --smrt-typography-display-medium-size: 2.75rem;
  --smrt-typography-display-medium-line-height: 1.15;
  --smrt-typography-display-medium-weight: 400;
  --smrt-typography-display-medium-tracking: -0.01em;
  --smrt-typography-display-medium-font-family: var(--smrt-font-family);
  --smrt-typography-display-medium-font: 400 2.75rem/1.15 var(--smrt-font-family);
  --smrt-typography-display-small-size: 2.25rem;
  --smrt-typography-display-small-line-height: 1.2;
  --smrt-typography-display-small-weight: 400;
  --smrt-typography-display-small-tracking: 0;
  --smrt-typography-display-small-font-family: var(--smrt-font-family);
  --smrt-typography-display-small-font: 400 2.25rem/1.2 var(--smrt-font-family);
  --smrt-typography-headline-large-size: 2rem;
  --smrt-typography-headline-large-line-height: 1.25;
  --smrt-typography-headline-large-weight: 400;
  --smrt-typography-headline-large-tracking: 0;
  --smrt-typography-headline-large-font-family: var(--smrt-font-family);
  --smrt-typography-headline-large-font: 400 2rem/1.25 var(--smrt-font-family);
  --smrt-typography-headline-medium-size: 1.75rem;
  --smrt-typography-headline-medium-line-height: 1.3;
  --smrt-typography-headline-medium-weight: 400;
  --smrt-typography-headline-medium-tracking: 0;
  --smrt-typography-headline-medium-font-family: var(--smrt-font-family);
  --smrt-typography-headline-medium-font: 400 1.75rem/1.3 var(--smrt-font-family);
  --smrt-typography-headline-small-size: 1.5rem;
  --smrt-typography-headline-small-line-height: 1.35;
  --smrt-typography-headline-small-weight: 400;
  --smrt-typography-headline-small-tracking: 0;
  --smrt-typography-headline-small-font-family: var(--smrt-font-family);
  --smrt-typography-headline-small-font: 400 1.5rem/1.35 var(--smrt-font-family);
  --smrt-typography-title-large-size: 1.375rem;
  --smrt-typography-title-large-line-height: 1.4;
  --smrt-typography-title-large-weight: 500;
  --smrt-typography-title-large-tracking: 0;
  --smrt-typography-title-large-font-family: var(--smrt-font-family);
  --smrt-typography-title-large-font: 500 1.375rem/1.4 var(--smrt-font-family);
  --smrt-typography-title-medium-size: 1rem;
  --smrt-typography-title-medium-line-height: 1.5;
  --smrt-typography-title-medium-weight: 500;
  --smrt-typography-title-medium-tracking: 0.01em;
  --smrt-typography-title-medium-font-family: var(--smrt-font-family);
  --smrt-typography-title-medium-font: 500 1rem/1.5 var(--smrt-font-family);
  --smrt-typography-title-small-size: 0.875rem;
  --smrt-typography-title-small-line-height: 1.5;
  --smrt-typography-title-small-weight: 500;
  --smrt-typography-title-small-tracking: 0.01em;
  --smrt-typography-title-small-font-family: var(--smrt-font-family);
  --smrt-typography-title-small-font: 500 0.875rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-large-size: 1rem;
  --smrt-typography-body-large-line-height: 1.5;
  --smrt-typography-body-large-weight: 400;
  --smrt-typography-body-large-tracking: 0.03em;
  --smrt-typography-body-large-font-family: var(--smrt-font-family);
  --smrt-typography-body-large-font: 400 1rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-medium-size: 0.875rem;
  --smrt-typography-body-medium-line-height: 1.5;
  --smrt-typography-body-medium-weight: 400;
  --smrt-typography-body-medium-tracking: 0.02em;
  --smrt-typography-body-medium-font-family: var(--smrt-font-family);
  --smrt-typography-body-medium-font: 400 0.875rem/1.5 var(--smrt-font-family);
  --smrt-typography-body-small-size: 0.75rem;
  --smrt-typography-body-small-line-height: 1.4;
  --smrt-typography-body-small-weight: 400;
  --smrt-typography-body-small-tracking: 0.03em;
  --smrt-typography-body-small-font-family: var(--smrt-font-family);
  --smrt-typography-body-small-font: 400 0.75rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-large-size: 0.875rem;
  --smrt-typography-label-large-line-height: 1.4;
  --smrt-typography-label-large-weight: 500;
  --smrt-typography-label-large-tracking: 0.01em;
  --smrt-typography-label-large-font-family: var(--smrt-font-family);
  --smrt-typography-label-large-font: 500 0.875rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-medium-size: 0.75rem;
  --smrt-typography-label-medium-line-height: 1.4;
  --smrt-typography-label-medium-weight: 500;
  --smrt-typography-label-medium-tracking: 0.05em;
  --smrt-typography-label-medium-font-family: var(--smrt-font-family);
  --smrt-typography-label-medium-font: 500 0.75rem/1.4 var(--smrt-font-family);
  --smrt-typography-label-small-size: 0.6875rem;
  --smrt-typography-label-small-line-height: 1.4;
  --smrt-typography-label-small-weight: 500;
  --smrt-typography-label-small-tracking: 0.05em;
  --smrt-typography-label-small-font-family: var(--smrt-font-family);
  --smrt-typography-label-small-font: 500 0.6875rem/1.4 var(--smrt-font-family);
}
