@import "https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;500;600;700&display=swap";@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap";@import "https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap";@import "https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&display=swap";@import "https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap";@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Display&display=swap');/**
 * Google Fonts imports
 * 
 * Import custom fonts used in theme presets
 */

/* Font imports moved to src/styles/index.css to satisfy PostCSS ordering */

/**
 * Base styles - Resets and base styles for the library
 * 
 * Note: All styles are scoped to .cv-data-table to avoid conflicts
 * with the consuming project's styles.
 */

/* Reset box-sizing - Scoped to DataTable only */
.cv-data-table,
.cv-data-table *,
.cv-data-table *::before,
.cv-data-table *::after {
  box-sizing: border-box;
}

/* Base styles for DataTable component */
.cv-data-table {
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  color: var(--cv-ui-text-primary);
  line-height: 1.5;
}

/* Ensure tables are properly styled */
.cv-data-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default button styles */
.cv-data-table button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

/* Remove default input styles */
.cv-data-table input,
.cv-data-table select,
.cv-data-table textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

/* Remove default list styles */
.cv-data-table ul,
.cv-data-table ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Ensure proper text rendering */
.cv-data-table {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Remove default focus outline (will be replaced by custom focus styles) */
.cv-data-table *:focus {
  outline: none;
}

/**
 * CSS Tokens - Variables CSS communes à toute la librairie
 * Préfixe: --cv-ui-* (CartoVision UI)
 * 
 * Ces tokens peuvent être overridés par les projets receveurs via le plugin
 */

:root {
  /* ============================================
     COLORS - Base
     ============================================ */
  --cv-ui-color-primary: #3b82f6;
  --cv-ui-color-primary-hover: #2563eb;
  --cv-ui-color-primary-light: #dbeafe;
  --cv-ui-color-primary-dark: #1e40af;

  --cv-ui-color-secondary: #6b7280;
  --cv-ui-color-secondary-hover: #4b5563;
  --cv-ui-color-secondary-light: #f3f4f6;
  --cv-ui-color-secondary-dark: #374151;

  --cv-ui-color-success: #10b981;
  --cv-ui-color-success-hover: #059669;
  --cv-ui-color-success-light: #d1fae5;
  --cv-ui-color-success-dark: #047857;

  --cv-ui-color-warning: #f59e0b;
  --cv-ui-color-warning-hover: #d97706;
  --cv-ui-color-warning-light: #fef3c7;
  --cv-ui-color-warning-dark: #b45309;

  --cv-ui-color-danger: #ef4444;
  --cv-ui-color-danger-hover: #dc2626;
  --cv-ui-color-danger-light: #fee2e2;
  --cv-ui-color-danger-dark: #b91c1c;

  --cv-ui-color-info: #3b82f6;
  --cv-ui-color-info-hover: #2563eb;
  --cv-ui-color-info-light: #dbeafe;
  --cv-ui-color-info-dark: #1e40af;

  /* ============================================
     COLORS - Backgrounds
     ============================================ */
  --cv-ui-bg-primary: #ffffff;
  --cv-ui-bg-secondary: #f8fafc;
  --cv-ui-bg-tertiary: #f1f5f9;
  --cv-ui-bg-hover: #f9fafb;
  --cv-ui-bg-active: #f3f4f6;

  /* ============================================
     COLORS - Text
     ============================================ */
  --cv-ui-text-primary: #1e293b;
  --cv-ui-text-secondary: #64748b;
  --cv-ui-text-tertiary: #94a3b8;
  --cv-ui-text-disabled: #cbd5e1;
  --cv-ui-text-inverse: #ffffff;

  /* ============================================
     COLORS - Borders
     ============================================ */
  --cv-ui-border-color: #e2e8f0;
  --cv-ui-border-color-hover: #cbd5e1;
  --cv-ui-border-color-focus: #3b82f6;
  --cv-ui-border-color-error: #ef4444;

  /* ============================================
     SPACING
     ============================================ */
  --cv-ui-spacing-xs: 4px;
  --cv-ui-spacing-sm: 8px;
  --cv-ui-spacing-md: 16px;
  --cv-ui-spacing-lg: 24px;
  --cv-ui-spacing-xl: 32px;
  --cv-ui-spacing-2xl: 48px;

  /* ============================================
     BORDER RADIUS
     ============================================ */
  --cv-ui-radius-sm: 4px;
  --cv-ui-radius-md: 6px;
  --cv-ui-radius-lg: 8px;
  --cv-ui-radius-xl: 12px;
  --cv-ui-radius-full: 9999px;

  /* ============================================
     SHADOWS
     ============================================ */
  --cv-ui-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --cv-ui-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --cv-ui-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --cv-ui-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* ============================================
     TYPOGRAPHY
     ============================================ */
  --cv-ui-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --cv-ui-font-size-xs: 12px;
  --cv-ui-font-size-sm: 14px;
  --cv-ui-font-size-md: 16px;
  --cv-ui-font-size-lg: 18px;
  --cv-ui-font-size-xl: 20px;
  --cv-ui-font-weight-normal: 400;
  --cv-ui-font-weight-medium: 500;
  --cv-ui-font-weight-semibold: 600;
  --cv-ui-font-weight-bold: 700;

  /* ============================================
     Z-INDEX
     ============================================ */
  --cv-ui-z-base: 1;
  --cv-ui-z-dropdown: 1000;
  --cv-ui-z-sticky: 1020;
  --cv-ui-z-fixed: 1030;
  --cv-ui-z-modal-backdrop: 1040;
  --cv-ui-z-modal: 1050;
  --cv-ui-z-popover: 1060;
  --cv-ui-z-tooltip: 1070;

  /* ============================================
     TRANSITIONS
     ============================================ */
  --cv-ui-transition-fast: 150ms;
  --cv-ui-transition-base: 200ms;
  --cv-ui-transition-slow: 300ms;
  --cv-ui-transition-timing: cubic-bezier(0.4, 0, 0.2, 1);

  /* ============================================
     DATATABLE - Custom Tool Panels Only
     Note: AG Grid styling uses Theme API, not CSS variables
     Les panels custom utilisent maintenant exclusivement les variables AG Grid
     ============================================ */
}







/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-ease: initial;
    }
  }
}
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-yellow-100: oklch(97.3% .071 103.193);
    --color-green-500: oklch(72.3% .219 149.579);
    --color-green-600: oklch(62.7% .194 149.214);
    --color-blue-100: oklch(93.2% .032 255.585);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-violet-500: oklch(60.6% .25 292.717);
    --color-violet-700: oklch(49.1% .27 292.581);
    --color-gray-100: oklch(96.7% .003 264.542);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-neutral-100: oklch(97% 0 0);
    --color-neutral-500: oklch(55.6% 0 0);
    --color-white: #fff;
    --spacing: .25rem;
    --container-xs: 20rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-primary: #383838;
    --color-info: oklch(64% .16 230);
    --color-warning: oklch(80% .16 85);
    --color-error: oklch(62% .2 25);
  }
}
@layer base {
  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

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

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

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

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

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components {
  .cv-ui-btn {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing) * 2);
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
    -webkit-user-select: none;
    user-select: none;
    flex-shrink: 0;
    display: inline-flex;
  }

  .cv-ui-btn:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-outline-style: none;
    outline-style: none;
  }

  .cv-ui-btn:disabled {
    pointer-events: none;
    opacity: .6;
  }

  .cv-ui-btn--solid--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
  }

  @media (hover: hover) {
    .cv-ui-btn--solid--primary:hover {
      background-color: #383838e6;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .cv-ui-btn--solid--primary:hover {
        background-color: color-mix(in oklab, var(--color-primary) 90%, transparent);
      }
    }
  }

  .cv-ui-btn--solid--primary:focus-visible {
    --tw-ring-color: #38383866;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--solid--primary:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-primary) 40%, transparent);
    }
  }

  .cv-ui-btn--solid--info {
    background-color: var(--color-info);
    color: var(--color-white);
  }

  @media (hover: hover) {
    .cv-ui-btn--solid--info:hover {
      opacity: .9;
    }
  }

  .cv-ui-btn--solid--info:focus-visible {
    --tw-ring-color: #009ad04d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--solid--info:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-info) 30%, transparent);
    }
  }

  .cv-ui-btn--solid--warning {
    background-color: var(--color-warning);
    color: var(--color-white);
  }

  @media (hover: hover) {
    .cv-ui-btn--solid--warning:hover {
      opacity: .9;
    }
  }

  .cv-ui-btn--solid--warning:focus-visible {
    --tw-ring-color: #edb41759;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--solid--warning:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-warning) 35%, transparent);
    }
  }

  .cv-ui-btn--solid--error {
    background-color: var(--color-error);
    color: var(--color-white);
  }

  @media (hover: hover) {
    .cv-ui-btn--solid--error:hover {
      opacity: .9;
    }
  }

  .cv-ui-btn--solid--error:focus-visible {
    --tw-ring-color: #e643434d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--solid--error:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-error) 30%, transparent);
    }
  }

  .cv-ui-btn--subtle--primary {
    background-color: #38383826;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--primary {
      background-color: color-mix(in oklab, var(--color-primary) 15%, transparent);
    }
  }

  .cv-ui-btn--subtle--primary {
    color: var(--color-primary);
  }

  @media (hover: hover) {
    .cv-ui-btn--subtle--primary:hover {
      background-color: #38383840;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .cv-ui-btn--subtle--primary:hover {
        background-color: color-mix(in oklab, var(--color-primary) 25%, transparent);
      }
    }
  }

  .cv-ui-btn--subtle--primary:focus-visible {
    --tw-ring-color: #3838384d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--primary:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
    }
  }

  .cv-ui-btn--subtle--info {
    background-color: #009ad026;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--info {
      background-color: color-mix(in oklab, var(--color-info) 15%, transparent);
    }
  }

  .cv-ui-btn--subtle--info {
    color: var(--color-info);
  }

  @media (hover: hover) {
    .cv-ui-btn--subtle--info:hover {
      background-color: #009ad040;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .cv-ui-btn--subtle--info:hover {
        background-color: color-mix(in oklab, var(--color-info) 25%, transparent);
      }
    }
  }

  .cv-ui-btn--subtle--info:focus-visible {
    --tw-ring-color: #009ad040;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--info:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-info) 25%, transparent);
    }
  }

  .cv-ui-btn--subtle--warning {
    background-color: #edb41733;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--warning {
      background-color: color-mix(in oklab, var(--color-warning) 20%, transparent);
    }
  }

  .cv-ui-btn--subtle--warning {
    color: var(--color-warning);
  }

  @media (hover: hover) {
    .cv-ui-btn--subtle--warning:hover {
      background-color: #edb4174d;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .cv-ui-btn--subtle--warning:hover {
        background-color: color-mix(in oklab, var(--color-warning) 30%, transparent);
      }
    }
  }

  .cv-ui-btn--subtle--warning:focus-visible {
    --tw-ring-color: #edb41740;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--warning:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-warning) 25%, transparent);
    }
  }

  .cv-ui-btn--subtle--error {
    background-color: #e6434326;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--error {
      background-color: color-mix(in oklab, var(--color-error) 15%, transparent);
    }
  }

  .cv-ui-btn--subtle--error {
    color: var(--color-error);
  }

  @media (hover: hover) {
    .cv-ui-btn--subtle--error:hover {
      background-color: #e6434340;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .cv-ui-btn--subtle--error:hover {
        background-color: color-mix(in oklab, var(--color-error) 25%, transparent);
      }
    }
  }

  .cv-ui-btn--subtle--error:focus-visible {
    --tw-ring-color: #e6434340;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .cv-ui-btn--subtle--error:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-error) 25%, transparent);
    }
  }

  .cv-ui-btn--sm {
    height: calc(var(--spacing) * 7);
    padding-inline: calc(var(--spacing) * 2);
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    border-radius: .25rem;
  }

  .cv-ui-btn--md {
    height: calc(var(--spacing) * 8);
    padding-inline: calc(var(--spacing) * 2.5);
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
    border-radius: .25rem;
  }

  .cv-ui-btn--lg {
    height: calc(var(--spacing) * 10);
    border-radius: var(--radius-md);
    padding-inline: calc(var(--spacing) * 3);
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .cv-ui-btn--xl {
    height: calc(var(--spacing) * 11.5);
    border-radius: var(--radius-lg);
    padding-inline: calc(var(--spacing) * 3.5);
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .cv-ui-btn--2xl {
    height: calc(var(--spacing) * 13);
    border-radius: var(--radius-xl);
    padding-inline: calc(var(--spacing) * 3.5);
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .cv-ui-btn--icon--only-sm {
    height: calc(var(--spacing) * 7);
    width: calc(var(--spacing) * 7);
    padding-inline: calc(var(--spacing) * 0);
    border-radius: .25rem;
  }

  .cv-ui-btn--icon--only-md {
    height: calc(var(--spacing) * 8);
    width: calc(var(--spacing) * 8);
    padding-inline: calc(var(--spacing) * 0);
    border-radius: .25rem;
  }

  .cv-ui-btn--icon--only-lg {
    height: calc(var(--spacing) * 10);
    width: calc(var(--spacing) * 10);
    border-radius: var(--radius-md);
    padding-inline: calc(var(--spacing) * 0);
  }

  .cv-ui-btn--icon--only-xl {
    height: calc(var(--spacing) * 11.5);
    width: calc(var(--spacing) * 11.5);
    border-radius: var(--radius-lg);
    padding-inline: calc(var(--spacing) * 0);
  }

  .cv-ui-btn--icon--only-2xl {
    height: calc(var(--spacing) * 13);
    width: calc(var(--spacing) * 13);
    border-radius: var(--radius-xl);
    padding-inline: calc(var(--spacing) * 0);
  }

  .btn-primary {
    background-color: var(--color-violet-500);
    padding-inline: calc(var(--spacing) * 5);
    padding-block: calc(var(--spacing) * 2);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    border-radius: 3.40282e38px;
  }

  @media (hover: hover) {
    .btn-primary:hover {
      background-color: var(--color-violet-700);
    }
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }

  .sr-only {
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .top-2 {
    top: calc(var(--spacing) * 2);
  }

  .right-2 {
    right: calc(var(--spacing) * 2);
  }

  .z-50 {
    z-index: 50;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .inline-flex {
    display: inline-flex;
  }

  .table {
    display: table;
  }

  .h-3 {
    height: calc(var(--spacing) * 3);
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-4\.5 {
    height: calc(var(--spacing) * 4.5);
  }

  .h-5 {
    height: calc(var(--spacing) * 5);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-11 {
    height: calc(var(--spacing) * 11);
  }

  .h-130 {
    height: calc(var(--spacing) * 130);
  }

  .h-\[13\.5px\] {
    height: 13.5px;
  }

  .h-\[15px\] {
    height: 15px;
  }

  .h-\[520px\] {
    height: 520px;
  }

  .h-full {
    height: 100%;
  }

  .h-screen {
    height: 100vh;
  }

  .w-3 {
    width: calc(var(--spacing) * 3);
  }

  .w-4\.5 {
    width: calc(var(--spacing) * 4.5);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

  .w-90 {
    width: calc(var(--spacing) * 90);
  }

  .w-\[13\.5px\] {
    width: 13.5px;
  }

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

  .w-full {
    width: 100%;
  }

  .max-w-xs {
    max-width: var(--container-xs);
  }

  .min-w-0 {
    min-width: calc(var(--spacing) * 0);
  }

  .flex-1 {
    flex: 1;
  }

  .flex-shrink {
    flex-shrink: 1;
  }

  .shrink-0 {
    flex-shrink: 0;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-spin {
    animation: var(--animate-spin);
  }

  .resize {
    resize: both;
  }

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

  .flex-wrap {
    flex-wrap: wrap;
  }

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

  .justify-between {
    justify-content: space-between;
  }

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

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  :where(.space-y-1 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  .truncate {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-\[var\(--color-error\)\] {
    border-color: var(--color-error);
  }

  .border-\[var\(--color-info\)\] {
    border-color: var(--color-info);
  }

  .border-\[var\(--color-warning\)\] {
    border-color: var(--color-warning);
  }

  .border-primary {
    border-color: var(--color-primary);
  }

  .border-transparent {
    border-color: #0000;
  }

  .bg-blue-100 {
    background-color: var(--color-blue-100);
  }

  .bg-blue-500 {
    background-color: var(--color-blue-500);
  }

  .bg-gray-100 {
    background-color: var(--color-gray-100);
  }

  .bg-gray-500 {
    background-color: var(--color-gray-500);
  }

  .bg-green-500 {
    background-color: var(--color-green-500);
  }

  .bg-primary {
    background-color: var(--color-primary);
  }

  .bg-transparent {
    background-color: #0000;
  }

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

  .bg-yellow-100 {
    background-color: var(--color-yellow-100);
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .text-\[var\(--color-error\)\] {
    color: var(--color-error);
  }

  .text-\[var\(--color-info\)\] {
    color: var(--color-info);
  }

  .text-\[var\(--color-warning\)\] {
    color: var(--color-warning);
  }

  .text-gray-600 {
    color: var(--color-gray-600);
  }

  .text-neutral-500 {
    color: var(--color-neutral-500);
  }

  .text-primary {
    color: var(--color-primary);
  }

  .text-white {
    color: var(--color-white);
  }

  .opacity-25 {
    opacity: .25;
  }

  .opacity-70 {
    opacity: .7;
  }

  .opacity-75 {
    opacity: .75;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .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, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }

  @media (hover: hover) {
    .hover\:bg-\[var\(--color-error\)\]\/10:hover {
      background-color: #e643431a;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-\[var\(--color-error\)\]\/10:hover {
        background-color: color-mix(in oklab, var(--color-error) 10%, transparent);
      }
    }

    .hover\:bg-\[var\(--color-info\)\]\/10:hover {
      background-color: #009ad01a;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-\[var\(--color-info\)\]\/10:hover {
        background-color: color-mix(in oklab, var(--color-info) 10%, transparent);
      }
    }

    .hover\:bg-\[var\(--color-warning\)\]\/10:hover {
      background-color: #edb4171a;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-\[var\(--color-warning\)\]\/10:hover {
        background-color: color-mix(in oklab, var(--color-warning) 10%, transparent);
      }
    }

    .hover\:bg-blue-600:hover {
      background-color: var(--color-blue-600);
    }

    .hover\:bg-gray-600:hover {
      background-color: var(--color-gray-600);
    }

    .hover\:bg-green-600:hover {
      background-color: var(--color-green-600);
    }

    .hover\:bg-neutral-100:hover {
      background-color: var(--color-neutral-100);
    }

    .hover\:bg-primary\/10:hover {
      background-color: #3838381a;
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-primary\/10:hover {
        background-color: color-mix(in oklab, var(--color-primary) 10%, transparent);
      }
    }
  }

  .focus-visible\:ring-\[var\(--color-error\)\]\/25:focus-visible {
    --tw-ring-color: #e6434340;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-\[var\(--color-error\)\]\/25:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-error) 25%, transparent);
    }
  }

  .focus-visible\:ring-\[var\(--color-info\)\]\/25:focus-visible {
    --tw-ring-color: #009ad040;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-\[var\(--color-info\)\]\/25:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-info) 25%, transparent);
    }
  }

  .focus-visible\:ring-\[var\(--color-warning\)\]\/25:focus-visible {
    --tw-ring-color: #edb41740;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-\[var\(--color-warning\)\]\/25:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-warning) 25%, transparent);
    }
  }

  .focus-visible\:ring-primary\/30:focus-visible {
    --tw-ring-color: #3838384d;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .focus-visible\:ring-primary\/30:focus-visible {
      --tw-ring-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
    }
  }
}
.cv-data-table, .cv-data-table *, .cv-data-table :before, .cv-data-table :after {
  box-sizing: border-box;
}
.cv-data-table {
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  color: var(--cv-ui-text-primary);
  line-height: 1.5;
}
.cv-data-table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.cv-data-table button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}
.cv-data-table input, .cv-data-table select, .cv-data-table textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
.cv-data-table ul, .cv-data-table ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cv-data-table {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.cv-data-table :focus {
  outline: none;
}
:root {
  --cv-ui-color-primary: #3b82f6;
  --cv-ui-color-primary-hover: #2563eb;
  --cv-ui-color-primary-light: #dbeafe;
  --cv-ui-color-primary-dark: #1e40af;
  --cv-ui-color-secondary: #6b7280;
  --cv-ui-color-secondary-hover: #4b5563;
  --cv-ui-color-secondary-light: #f3f4f6;
  --cv-ui-color-secondary-dark: #374151;
  --cv-ui-color-success: #10b981;
  --cv-ui-color-success-hover: #059669;
  --cv-ui-color-success-light: #d1fae5;
  --cv-ui-color-success-dark: #047857;
  --cv-ui-color-warning: #f59e0b;
  --cv-ui-color-warning-hover: #d97706;
  --cv-ui-color-warning-light: #fef3c7;
  --cv-ui-color-warning-dark: #b45309;
  --cv-ui-color-danger: #ef4444;
  --cv-ui-color-danger-hover: #dc2626;
  --cv-ui-color-danger-light: #fee2e2;
  --cv-ui-color-danger-dark: #b91c1c;
  --cv-ui-color-info: #3b82f6;
  --cv-ui-color-info-hover: #2563eb;
  --cv-ui-color-info-light: #dbeafe;
  --cv-ui-color-info-dark: #1e40af;
  --cv-ui-bg-primary: #fff;
  --cv-ui-bg-secondary: #f8fafc;
  --cv-ui-bg-tertiary: #f1f5f9;
  --cv-ui-bg-hover: #f9fafb;
  --cv-ui-bg-active: #f3f4f6;
  --cv-ui-text-primary: #1e293b;
  --cv-ui-text-secondary: #64748b;
  --cv-ui-text-tertiary: #94a3b8;
  --cv-ui-text-disabled: #cbd5e1;
  --cv-ui-text-inverse: #fff;
  --cv-ui-border-color: #e2e8f0;
  --cv-ui-border-color-hover: #cbd5e1;
  --cv-ui-border-color-focus: #3b82f6;
  --cv-ui-border-color-error: #ef4444;
  --cv-ui-spacing-xs: 4px;
  --cv-ui-spacing-sm: 8px;
  --cv-ui-spacing-md: 16px;
  --cv-ui-spacing-lg: 24px;
  --cv-ui-spacing-xl: 32px;
  --cv-ui-spacing-2xl: 48px;
  --cv-ui-radius-sm: 4px;
  --cv-ui-radius-md: 6px;
  --cv-ui-radius-lg: 8px;
  --cv-ui-radius-xl: 12px;
  --cv-ui-radius-full: 9999px;
  --cv-ui-shadow-sm: 0 1px 2px 0 #0000000d;
  --cv-ui-shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
  --cv-ui-shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
  --cv-ui-shadow-xl: 0 20px 25px -5px #0000001a, 0 10px 10px -5px #0000000a;
  --cv-ui-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --cv-ui-font-size-xs: 12px;
  --cv-ui-font-size-sm: 14px;
  --cv-ui-font-size-md: 16px;
  --cv-ui-font-size-lg: 18px;
  --cv-ui-font-size-xl: 20px;
  --cv-ui-font-weight-normal: 400;
  --cv-ui-font-weight-medium: 500;
  --cv-ui-font-weight-semibold: 600;
  --cv-ui-font-weight-bold: 700;
  --cv-ui-z-base: 1;
  --cv-ui-z-dropdown: 1000;
  --cv-ui-z-sticky: 1020;
  --cv-ui-z-fixed: 1030;
  --cv-ui-z-modal-backdrop: 1040;
  --cv-ui-z-modal: 1050;
  --cv-ui-z-popover: 1060;
  --cv-ui-z-tooltip: 1070;
  --cv-ui-transition-fast: .15s;
  --cv-ui-transition-base: .2s;
  --cv-ui-transition-slow: .3s;
  --cv-ui-transition-timing: cubic-bezier(.4, 0, .2, 1);
}
[data-theme="brand"][data-mode="light"], [data-theme="brand"]:not([data-mode]) {
  --color-primary: oklch(60% .22 250);
  --color-primary-hover: oklch(54% .22 250);
  --color-bg: oklch(96% .04 240);
  --color-text: oklch(24% .08 255);
}
[data-theme="brand"][data-mode="dark"] {
  --color-primary: oklch(72% .18 250);
  --color-primary-hover: oklch(66% .18 250);
  --color-bg: oklch(22% .03 255);
  --color-text: oklch(96% .01 255);
}
[data-theme="dark"], [data-mode="dark"] {
  --cv-ui-bg-primary: #1e293b;
  --cv-ui-bg-secondary: #334155;
  --cv-ui-bg-tertiary: #475569;
  --cv-ui-bg-hover: #334155;
  --cv-ui-bg-active: #475569;
  --cv-ui-text-primary: #f1f5f9;
  --cv-ui-text-secondary: #cbd5e1;
  --cv-ui-text-tertiary: #94a3b8;
  --cv-ui-text-disabled: #64748b;
  --cv-ui-text-inverse: #0f172a;
  --cv-ui-border-color: #475569;
  --cv-ui-border-color-hover: #64748b;
  --cv-ui-border-color-focus: #60a5fa;
  --cv-ui-border-color-error: #f87171;
  --cv-ui-color-primary: #60a5fa;
  --cv-ui-color-primary-hover: #93c5fd;
  --cv-ui-color-primary-light: #1e3a5f;
  --cv-ui-color-primary-dark: #93c5fd;
  --cv-ui-shadow-sm: 0 1px 2px 0 #0000004d;
  --cv-ui-shadow-md: 0 4px 6px -1px #0000004d, 0 2px 4px -1px #0003;
  --cv-ui-shadow-lg: 0 10px 15px -3px #0000004d, 0 4px 6px -2px #0003;
  --cv-ui-shadow-xl: 0 20px 25px -5px #0000004d, 0 10px 10px -5px #0003;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false
}
@property --tw-brightness {
  syntax: "*";
  inherits: false
}
@property --tw-contrast {
  syntax: "*";
  inherits: false
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}
@property --tw-invert {
  syntax: "*";
  inherits: false
}
@property --tw-opacity {
  syntax: "*";
  inherits: false
}
@property --tw-saturate {
  syntax: "*";
  inherits: false
}
@property --tw-sepia {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}
@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}
@property --tw-ease {
  syntax: "*";
  inherits: false
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
*, ::before, ::after {--_histoire-color-primary-50: 236 253 245;--_histoire-color-primary-100: 209 250 229;--_histoire-color-primary-200: 167 243 208;--_histoire-color-primary-300: 110 231 183;--_histoire-color-primary-400: 52 211 153;--_histoire-color-primary-500: 16 185 129;--_histoire-color-primary-600: 5 150 105;--_histoire-color-primary-700: 4 120 87;--_histoire-color-primary-800: 6 95 70;--_histoire-color-primary-900: 6 78 59;--_histoire-color-gray-50: 250 250 250;--_histoire-color-gray-100: 244 244 245;--_histoire-color-gray-200: 228 228 231;--_histoire-color-gray-300: 212 212 216;--_histoire-color-gray-400: 161 161 170;--_histoire-color-gray-500: 113 113 122;--_histoire-color-gray-600: 82 82 91;--_histoire-color-gray-700: 63 63 70;--_histoire-color-gray-750: 50 50 56;--_histoire-color-gray-800: 39 39 42;--_histoire-color-gray-850: 31 31 33;--_histoire-color-gray-900: 24 24 27;--_histoire-color-gray-950: 16 16 18;}

@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)){

.resize-observer[data-v-b329ee4c]{
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100%;
  border:none;
  background-color:transparent;
  pointer-events:none;
  display:block;
  overflow:hidden;
  opacity:0
}

.resize-observer[data-v-b329ee4c] object{
  display:block;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  overflow:hidden;
  pointer-events:none;
  z-index:-1
}

.v-popper__popper{
  z-index:10000;
  top:0;
  left:0;
  outline:none
}

.v-popper__popper.v-popper__popper--hidden{
  visibility:hidden;
  opacity:0;
  transition:opacity .15s,visibility .15s;
  pointer-events:none
}

.v-popper__popper.v-popper__popper--shown{
  visibility:visible;
  opacity:1;
  transition:opacity .15s
}

.v-popper__popper.v-popper__popper--skip-transition,.v-popper__popper.v-popper__popper--skip-transition>.v-popper__wrapper{
  transition:none!important
}

.v-popper__backdrop{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none
}

.v-popper__inner{
  position:relative;
  box-sizing:border-box;
  overflow-y:auto
}

.v-popper__inner>div{
  position:relative;
  z-index:1;
  max-width:inherit;
  max-height:inherit
}

.v-popper__arrow-container{
  position:absolute;
  width:10px;
  height:10px
}

.v-popper__popper--arrow-overflow .v-popper__arrow-container,.v-popper__popper--no-positioning .v-popper__arrow-container{
  display:none
}

.v-popper__arrow-inner,.v-popper__arrow-outer{
  border-style:solid;
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:0
}

.v-popper__arrow-inner{
  visibility:hidden;
  border-width:7px
}

.v-popper__arrow-outer{
  border-width:6px
}

.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{
  left:-2px
}

.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{
  left:-1px
}

.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer{
  border-bottom-width:0;
  border-left-color:transparent!important;
  border-right-color:transparent!important;
  border-bottom-color:transparent!important
}

.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner{
  top:-2px
}

.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{
  top:0
}

.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{
  border-top-width:0;
  border-left-color:transparent!important;
  border-right-color:transparent!important;
  border-top-color:transparent!important
}

.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{
  top:-4px
}

.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{
  top:-6px
}

.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{
  top:-2px
}

.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{
  top:-1px
}

.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{
  border-left-width:0;
  border-left-color:transparent!important;
  border-top-color:transparent!important;
  border-bottom-color:transparent!important
}

.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{
  left:-4px
}

.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{
  left:-6px
}

.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{
  right:-10px
}

.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer{
  border-right-width:0;
  border-top-color:transparent!important;
  border-right-color:transparent!important;
  border-bottom-color:transparent!important
}

.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner{
  left:-2px
}

.v-popper--theme-tooltip .v-popper__inner{
  background:rgba(0,0,0,.8);
  color:#fff;
  border-radius:6px;
  padding:7px 12px 6px
}

.v-popper--theme-tooltip .v-popper__arrow-outer{
  border-color:#000c
}

.v-popper--theme-dropdown .v-popper__inner{
  background:#fff;
  color:#000;
  border-radius:6px;
  border:1px solid #ddd;
  box-shadow:0 6px 30px #0000001a
}

.v-popper--theme-dropdown .v-popper__arrow-inner{
  visibility:visible;
  border-color:#fff
}

.v-popper--theme-dropdown .v-popper__arrow-outer{
  border-color:#ddd
}

.htw-bind-col-size{
  grid-template-columns:repeat(auto-fill,minmax(var(--histoire-col-size),1fr))
}

.__histoire-json-code[data-v-d4369e5a] .cm-editor{
  height:100%;
  min-width:280px
}

.v-popper{
  line-height:0
}

.htw-dark .v-popper--theme-dropdown .v-popper__inner{
  --tw-border-opacity: 1;
  border-color:rgb(31 31 33 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color:rgb(244 244 245 / var(--tw-text-opacity, 1))
}

.htw-dark .v-popper--theme-dropdown .v-popper__arrow-inner{
  --tw-border-opacity: 1;
  border-color:rgb(63 63 70 / var(--tw-border-opacity, 1))
}

.htw-dark .v-popper--theme-dropdown .v-popper__arrow-outer{
  --tw-border-opacity: 1;
  border-color:rgb(31 31 33 / var(--tw-border-opacity, 1))
}

.v-popper--theme-dropdown.v-popper__popper--show-from .v-popper__wrapper{
  transform:scale(.75)
}

.v-popper--theme-dropdown.v-popper__popper--show-to .v-popper__wrapper{
  transform:none;
  transition:transform .15s cubic-bezier(0,1,.5,1)
}

.v-popper__popper:focus-visible{
  outline:none
}

.htw-range-input::-webkit-slider-thumb{
  height:.75rem;
  width:.75rem;
  -webkit-appearance:none;
  appearance:none;
  border-radius:9999px;
  border-width:1px;
  border-style:solid;
  border-color:#00000040;
  --tw-bg-opacity: 1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.htw-range-input:is(.htw-dark *)::-webkit-slider-thumb{
  border-color:#ffffff40;
  --tw-bg-opacity: 1;
  background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1))
}

.htw-range-input:hover::-webkit-slider-thumb{
  --tw-border-opacity: 1 !important;
  border-color:rgb(16 185 129 / var(--tw-border-opacity, 1))!important;
  --tw-bg-opacity: 1 !important;
  background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))!important
}

.htw-range-input::-moz-range-thumb{
  height:.75rem;
  width:.75rem;
  -moz-appearance:none;
  appearance:none;
  border-radius:9999px;
  border-width:1px;
  border-style:solid;
  border-color:#00000040;
  --tw-bg-opacity: 1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.htw-range-input:is(.htw-dark *)::-moz-range-thumb{
  border-color:#ffffff40;
  --tw-bg-opacity: 1;
  background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1))
}

.htw-range-input:hover::-moz-range-thumb{
  --tw-border-opacity: 1 !important;
  border-color:rgb(16 185 129 / var(--tw-border-opacity, 1))!important;
  --tw-bg-opacity: 1 !important;
  background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))!important
}

/* @TODO custom themes */

.v-popper {
  line-height: 0;
}

.htw-dark .v-popper--theme-dropdown .v-popper__inner{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-850) / var(--tw-border-opacity, 1));
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-700) / var(--tw-bg-opacity, 1));
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-100) / var(--tw-text-opacity, 1))
}

.htw-dark .v-popper--theme-dropdown .v-popper__arrow-inner{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-700) / var(--tw-border-opacity, 1))
}

.htw-dark .v-popper--theme-dropdown .v-popper__arrow-outer{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-850) / var(--tw-border-opacity, 1))
}

.v-popper--theme-dropdown.v-popper__popper--show-from .v-popper__wrapper {
  transform: scale(.75);
}

.v-popper--theme-dropdown.v-popper__popper--show-to .v-popper__wrapper {
  transform: none;
  transition: transform .15s cubic-bezier(0, 1, .5, 1);
}

.v-popper__popper:focus-visible {
  outline: none;
}

.__histoire-scale-x-enter-active,
  .__histoire-scale-x-leave-active {
  transition: transform .15s, opacity .15s;
}

.__histoire-scale-x-enter-from,
  .__histoire-scale-x-leave-to {
  transform: scaleX(0);
  opacity: 0;
}

.__histoire-scale-y-enter-active,
  .__histoire-scale-y-leave-active {
  transition: transform .15s, opacity .15s;
}

.__histoire-scale-y-enter-from,
  .__histoire-scale-y-leave-to {
  transform: scaleY(0);
  opacity: 0;
}

.__histoire-fade-enter-active,
  .__histoire-fade-leave-active {
  transition: opacity .15s;
}

.__histoire-fade-enter-from,
  .__histoire-fade-leave-to {
  opacity: 0;
}

.__histoire-fade-bottom-enter-active,
  .__histoire-fade-bottom-leave-active {
  transition: transform .15s, opacity .15s;
  transform: translateY(0px);
}

.__histoire-fade-bottom-enter-from,
  .__histoire-fade-bottom-leave-to {
  transform: translateY(32px);
  opacity: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

a,
input,
button {
  color: inherit;
}

a {
  text-decoration: inherit;
}

input, button {
  font-family: inherit;
}

a,
button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

*, ::before, ::after{
  --tw-border-spacing-x:0;
  --tw-border-spacing-y:0;
  --tw-translate-x:0;
  --tw-translate-y:0;
  --tw-rotate:0;
  --tw-skew-x:0;
  --tw-skew-y:0;
  --tw-scale-x:1;
  --tw-scale-y:1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness:proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width:0px;
  --tw-ring-offset-color:#fff;
  --tw-ring-color:rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:0 0 #0000;
  --tw-ring-shadow:0 0 #0000;
  --tw-shadow:0 0 #0000;
  --tw-shadow-colored:0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: 
}

::backdrop{
  --tw-border-spacing-x:0;
  --tw-border-spacing-y:0;
  --tw-translate-x:0;
  --tw-translate-y:0;
  --tw-rotate:0;
  --tw-skew-x:0;
  --tw-skew-y:0;
  --tw-scale-x:1;
  --tw-scale-y:1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness:proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width:0px;
  --tw-ring-offset-color:#fff;
  --tw-ring-color:rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:0 0 #0000;
  --tw-ring-shadow:0 0 #0000;
  --tw-shadow:0 0 #0000;
  --tw-shadow-colored:0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: 
}

body,
  pre {
  margin: 0;
}

:scope,
  body,
  #app {
  height: 100%;
}

:scope {
  font-family: 'Noto Sans Display', system-ui, sans-serif;
  font-size: 1rem;
}

body {
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  body {
    font-size: .875rem;
  }
}

.__histoire-render-story:not(.__histoire-render-custom-controls) {
  overflow: auto;
  min-height: 100%;
}

.__histoire-code .shiki {
  background: transparent !important;
}

.htw-prose h1:not(:hover) .header-anchor[aria-hidden="true"], .htw-prose h2:not(:hover) .header-anchor[aria-hidden="true"], .htw-prose h3:not(:hover) .header-anchor[aria-hidden="true"], .htw-prose h4:not(:hover) .header-anchor[aria-hidden="true"] {
  visibility: hidden;
}

.htw-prose hr {
  margin: 1rem 0;
}

.__histoire-pane-shadow-from-right {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: right;
}

.htw-dark .__histoire-pane-shadow-from-right {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.htw-prose{
  color:var(--tw-prose-body);
  max-width:65ch;
}

.htw-prose :where(p):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:1.25em;
  margin-bottom:1.25em
}

.htw-prose :where([class~="lead"]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-lead);
  font-size:1.25em;
  line-height:1.6;
  margin-top:1.2em;
  margin-bottom:1.2em
}

.htw-prose :where(a):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:rgb(var(--_histoire-color-primary-500));
  text-decoration:none;
  font-weight:500;
}

.htw-prose :where(a):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)):hover{
  text-decoration:underline
}

.htw-prose :where(strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-bold);
  font-weight:600
}

.htw-prose :where(a strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(blockquote strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(thead th strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(ol):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:decimal;
  margin-top:1.25em;
  margin-bottom:1.25em;
  padding-inline-start:1.625em
}

.htw-prose :where(ol[type="A"]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:upper-alpha
}

.htw-prose :where(ol[type="a"]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:lower-alpha
}

.htw-prose :where(ol[type="A" s]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:upper-alpha
}

.htw-prose :where(ol[type="a" s]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:lower-alpha
}

.htw-prose :where(ol[type="I"]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:upper-roman
}

.htw-prose :where(ol[type="i"]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:lower-roman
}

.htw-prose :where(ol[type="I" s]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:upper-roman
}

.htw-prose :where(ol[type="i" s]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:lower-roman
}

.htw-prose :where(ol[type="1"]):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:decimal
}

.htw-prose :where(ul):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  list-style-type:disc;
  margin-top:1.25em;
  margin-bottom:1.25em;
  padding-inline-start:1.625em
}

.htw-prose :where(ol > li):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::marker{
  font-weight:400;
  color:var(--tw-prose-counters)
}

.htw-prose :where(ul > li):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::marker{
  color:var(--tw-prose-bullets)
}

.htw-prose :where(dt):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-headings);
  font-weight:600;
  margin-top:1.25em
}

.htw-prose :where(hr):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  border-color:var(--tw-prose-hr);
  border-top-width:1px;
  margin-top:3em;
  margin-bottom:3em
}

.htw-prose :where(blockquote):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  font-weight:500;
  font-style:italic;
  color:var(--tw-prose-quotes);
  border-inline-start-width:0.25rem;
  border-inline-start-color:var(--tw-prose-quote-borders);
  quotes:"\201C""\201D""\2018""\2019";
  margin-top:1.6em;
  margin-bottom:1.6em;
  padding-inline-start:1em;
  margin-left:0;
  margin-right:0;
  background-color:rgb(var(--_histoire-color-gray-100));
  padding:.25rem .375rem;
}

.htw-prose :where(blockquote):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)) p:first-child{
  margin-top:0
}

.htw-prose :where(blockquote):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)) p:last-child{
  margin-bottom:0
}

.htw-dark .htw-prose :where(blockquote):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  background-color:rgb(var(--_histoire-color-gray-750))
}

.htw-prose :where(blockquote p:first-of-type):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::before{
  content:open-quote
}

.htw-prose :where(blockquote p:last-of-type):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::after{
  content:close-quote
}

.htw-prose :where(h1):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-headings);
  font-weight:800;
  font-size:2.25em;
  margin-top:0;
  margin-bottom:0.8888889em;
  line-height:1.1111111
}

.htw-prose :where(h1 strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  font-weight:900;
  color:inherit
}

.htw-prose :where(h2):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-headings);
  font-weight:700;
  font-size:1.5em;
  margin-top:2em;
  margin-bottom:1em;
  line-height:1.3333333
}

.htw-prose :where(h2 strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  font-weight:800;
  color:inherit
}

.htw-prose :where(h3):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-headings);
  font-weight:600;
  font-size:1.25em;
  margin-top:1.6em;
  margin-bottom:0.6em;
  line-height:1.6
}

.htw-prose :where(h3 strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  font-weight:700;
  color:inherit
}

.htw-prose :where(h4):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-headings);
  font-weight:600;
  margin-top:1.5em;
  margin-bottom:0.5em;
  line-height:1.5
}

.htw-prose :where(h4 strong):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  font-weight:700;
  color:inherit
}

.htw-prose :where(img):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:2em;
  margin-bottom:2em
}

.htw-prose :where(picture):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  display:block;
  margin-top:2em;
  margin-bottom:2em
}

.htw-prose :where(video):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:2em;
  margin-bottom:2em
}

.htw-prose :where(kbd):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  font-weight:500;
  font-family:inherit;
  color:var(--tw-prose-kbd);
  box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size:0.875em;
  border-radius:0.3125rem;
  padding-top:0.1875em;
  padding-inline-end:0.375em;
  padding-bottom:0.1875em;
  padding-inline-start:0.375em
}

.htw-prose :where(code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-code);
  font-weight:normal;
  font-size:0.8rem;
  background-color:rgb(var(--_histoire-color-gray-500) / 20%);
  padding:0.05rem 0.5rem;
  border-radius:0.25rem;
}

.htw-prose :where(code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::before,.htw-prose :where(code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::after{
  display:none
}

.htw-prose :where(code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::before{
  content:"`"
}

.htw-prose :where(code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::after{
  content:"`"
}

.htw-prose :where(a code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(h1 code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(h2 code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit;
  font-size:0.875em
}

.htw-prose :where(h3 code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit;
  font-size:0.9em
}

.htw-prose :where(h4 code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(blockquote code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(thead th code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:inherit
}

.htw-prose :where(pre):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-pre-code);
  background-color:var(--tw-prose-pre-bg);
  overflow-x:auto;
  font-weight:400;
  font-size:0.875em;
  line-height:1.7142857;
  margin-top:1.7142857em;
  margin-bottom:1.7142857em;
  border-radius:0.375rem;
  padding-top:0.8571429em;
  padding-inline-end:1.1428571em;
  padding-bottom:0.8571429em;
  padding-inline-start:1.1428571em
}

.htw-prose :where(pre code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  background-color:transparent;
  border-width:0;
  border-radius:0;
  padding:0;
  font-weight:inherit;
  color:inherit;
  font-size:inherit;
  font-family:inherit;
  line-height:inherit
}

.htw-prose :where(pre code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::before{
  content:none
}

.htw-prose :where(pre code):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *))::after{
  content:none
}

.htw-prose :where(table):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  width:100%;
  table-layout:auto;
  margin-top:2em;
  margin-bottom:2em;
  font-size:0.875em;
  line-height:1.7142857
}

.htw-prose :where(thead):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  border-bottom-width:1px;
  border-bottom-color:var(--tw-prose-th-borders)
}

.htw-prose :where(thead th):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-headings);
  font-weight:600;
  vertical-align:bottom;
  padding-inline-end:0.5714286em;
  padding-bottom:0.5714286em;
  padding-inline-start:0.5714286em
}

.htw-prose :where(tbody tr):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  border-bottom-width:1px;
  border-bottom-color:var(--tw-prose-td-borders)
}

.htw-prose :where(tbody tr:last-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  border-bottom-width:0
}

.htw-prose :where(tbody td):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  vertical-align:baseline
}

.htw-prose :where(tfoot):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  border-top-width:1px;
  border-top-color:var(--tw-prose-th-borders)
}

.htw-prose :where(tfoot td):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  vertical-align:top
}

.htw-prose :where(th, td):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  text-align:start
}

.htw-prose :where(figure > *):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0;
  margin-bottom:0
}

.htw-prose :where(figcaption):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  color:var(--tw-prose-captions);
  font-size:0.875em;
  line-height:1.4285714;
  margin-top:0.8571429em
}

.htw-prose{
  --tw-prose-body:#374151;
  --tw-prose-headings:#111827;
  --tw-prose-lead:#4b5563;
  --tw-prose-links:#111827;
  --tw-prose-bold:#111827;
  --tw-prose-counters:#6b7280;
  --tw-prose-bullets:#d1d5db;
  --tw-prose-hr:#e5e7eb;
  --tw-prose-quotes:#111827;
  --tw-prose-quote-borders:#e5e7eb;
  --tw-prose-captions:#6b7280;
  --tw-prose-kbd:#111827;
  --tw-prose-kbd-shadows:17 24 39;
  --tw-prose-code:#111827;
  --tw-prose-pre-code:#e5e7eb;
  --tw-prose-pre-bg:#1f2937;
  --tw-prose-th-borders:#d1d5db;
  --tw-prose-td-borders:#e5e7eb;
  --tw-prose-invert-body:#d1d5db;
  --tw-prose-invert-headings:#fff;
  --tw-prose-invert-lead:#9ca3af;
  --tw-prose-invert-links:#fff;
  --tw-prose-invert-bold:#fff;
  --tw-prose-invert-counters:#9ca3af;
  --tw-prose-invert-bullets:rgb(var(--_histoire-color-gray-500));
  --tw-prose-invert-hr:rgb(var(--_histoire-color-gray-800));
  --tw-prose-invert-quotes:#f3f4f6;
  --tw-prose-invert-quote-borders:rgb(var(--_histoire-color-gray-800));
  --tw-prose-invert-captions:#9ca3af;
  --tw-prose-invert-kbd:#fff;
  --tw-prose-invert-kbd-shadows:255 255 255;
  --tw-prose-invert-code:#fff;
  --tw-prose-invert-pre-code:#d1d5db;
  --tw-prose-invert-pre-bg:rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders:#4b5563;
  --tw-prose-invert-td-borders:#374151;
  font-size:1rem;
  line-height:1.75
}

.htw-prose :where(picture > img):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0;
  margin-bottom:0
}

.htw-prose :where(li):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0.1rem;
  margin-bottom:0.1rem
}

.htw-prose :where(ol > li):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-inline-start:0.375em
}

.htw-prose :where(ul > li):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-inline-start:0.375em
}

.htw-prose :where(.htw-prose > ul > li p):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0.75em;
  margin-bottom:0.75em
}

.htw-prose :where(.htw-prose > ul > li > p:first-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:1.25em
}

.htw-prose :where(.htw-prose > ul > li > p:last-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-bottom:1.25em
}

.htw-prose :where(.htw-prose > ol > li > p:first-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:1.25em
}

.htw-prose :where(.htw-prose > ol > li > p:last-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-bottom:1.25em
}

.htw-prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0.75em;
  margin-bottom:0.75em
}

.htw-prose :where(dl):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:1.25em;
  margin-bottom:1.25em
}

.htw-prose :where(dd):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0.5em;
  padding-inline-start:1.625em
}

.htw-prose :where(hr + *):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0
}

.htw-prose :where(h2 + *):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0
}

.htw-prose :where(h3 + *):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0
}

.htw-prose :where(h4 + *):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0
}

.htw-prose :where(thead th:first-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-inline-start:0
}

.htw-prose :where(thead th:last-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-inline-end:0
}

.htw-prose :where(tbody td, tfoot td):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-top:0.5714286em;
  padding-inline-end:0.5714286em;
  padding-bottom:0.5714286em;
  padding-inline-start:0.5714286em
}

.htw-prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-inline-start:0
}

.htw-prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  padding-inline-end:0
}

.htw-prose :where(figure):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:2em;
  margin-bottom:2em
}

.htw-prose :where(.htw-prose > :first-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-top:0
}

.htw-prose :where(.htw-prose > :last-child):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-bottom:0
}

.htw-prose :where(h1, h2, h3, h4, th):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)){
  margin-bottom:0.75rem;
}

.htw-prose :where(h1, h2, h3, h4, th):not(:where([class~="htw-not-prose"],[class~="htw-not-prose"] *)):not(:first-child){
  margin-top:1.25rem
}

.htw-pointer-events-none{
  pointer-events:none
}

.htw-invisible{
  visibility:hidden
}

.htw-fixed{
  position:fixed
}

.htw-absolute{
  position:absolute
}

.htw-relative{
  position:relative
}

.htw-inset-0{
  inset:0px
}

.htw-bottom-0{
  bottom:0px
}

.htw-bottom-4{
  bottom:1rem
}

.htw-bottom-5{
  bottom:1.25rem
}

.htw-bottom-8{
  bottom:2rem
}

.htw-left-0{
  left:0px
}

.htw-left-5{
  left:1.25rem
}

.htw-left-8{
  left:2rem
}

.htw-right-0{
  right:0px
}

.htw-right-4{
  right:1rem
}

.htw-right-5{
  right:1.25rem
}

.htw-right-8{
  right:2rem
}

.htw-top-0{
  top:0px
}

.htw-top-5{
  top:1.25rem
}

.htw-top-8{
  top:2rem
}

.htw-isolate{
  isolation:isolate
}

.htw-z-10{
  z-index:10
}

.htw-z-20{
  z-index:20
}

.htw-m-0{
  margin:0px
}

.htw-m-1{
  margin:0.25rem
}

.htw-m-4{
  margin:1rem
}

.htw-m-auto{
  margin:auto
}

.-htw-my-1{
  margin-top:-0.25rem;
  margin-bottom:-0.25rem
}

.htw-mx-1{
  margin-left:0.25rem;
  margin-right:0.25rem
}

.htw-mx-2{
  margin-left:0.5rem;
  margin-right:0.5rem
}

.htw-mx-4{
  margin-left:1rem;
  margin-right:1rem
}

.htw-mx-6{
  margin-left:1.5rem;
  margin-right:1.5rem
}

.htw-my-0{
  margin-top:0px;
  margin-bottom:0px
}

.htw-my-2{
  margin-top:0.5rem;
  margin-bottom:0.5rem
}

.htw-my-4{
  margin-top:1rem;
  margin-bottom:1rem
}

.htw-my-8{
  margin-top:2rem;
  margin-bottom:2rem
}

.-htw-mt-1{
  margin-top:-0.25rem
}

.htw-mb-2{
  margin-bottom:0.5rem
}

.htw-mb-6{
  margin-bottom:1.5rem
}

.htw-mb-8{
  margin-bottom:2rem
}

.htw-ml-4{
  margin-left:1rem
}

.htw-ml-auto{
  margin-left:auto
}

.htw-mr-2{
  margin-right:0.5rem
}

.htw-mr-auto{
  margin-right:auto
}

.htw-mt-0\.5{
  margin-top:0.125rem
}

.htw-mt-1{
  margin-top:0.25rem
}

.htw-mt-2{
  margin-top:0.5rem
}

.htw-box-border{
  box-sizing:border-box
}

.htw-block{
  display:block
}

.htw-flex{
  display:flex
}

.htw-inline-flex{
  display:inline-flex
}

.htw-grid{
  display:grid
}

.\!htw-hidden{
  display:none !important
}

.htw-hidden{
  display:none
}

.htw-h-1{
  height:0.25rem
}

.htw-h-10{
  height:2.5rem
}

.htw-h-12{
  height:3rem
}

.htw-h-16{
  height:4rem
}

.htw-h-2{
  height:0.5rem
}

.htw-h-20{
  height:5rem
}

.htw-h-3{
  height:0.75rem
}

.htw-h-32{
  height:8rem
}

.htw-h-4{
  height:1rem
}

.htw-h-48{
  height:12rem
}

.htw-h-5{
  height:1.25rem
}

.htw-h-6{
  height:1.5rem
}

.htw-h-64{
  height:16rem
}

.htw-h-8{
  height:2rem
}

.htw-h-9{
  height:2.25rem
}

.htw-h-\[100px\]{
  height:100px
}

.htw-h-\[16px\]{
  height:16px
}

.htw-h-\[1px\]{
  height:1px
}

.htw-h-\[22px\]{
  height:22px
}

.htw-h-\[27px\]{
  height:27px
}

.htw-h-\[2px\]{
  height:2px
}

.htw-h-\[51px\]{
  height:51px
}

.htw-h-fit{
  height:-moz-fit-content;
  height:fit-content
}

.htw-h-full{
  height:100%
}

.htw-h-px{
  height:1px
}

.htw-h-screen{
  height:100vh
}

.htw-max-h-\[400px\]{
  max-height:400px
}

.htw-max-h-\[80vh\]{
  max-height:80vh
}

.htw-max-h-full{
  max-height:100%
}

.htw-min-h-32{
  min-height:8rem
}

.htw-min-h-\[26px\]{
  min-height:26px
}

.htw-w-0{
  width:0px
}

.htw-w-16{
  width:4rem
}

.htw-w-2{
  width:0.5rem
}

.htw-w-20{
  width:5rem
}

.htw-w-28{
  width:7rem
}

.htw-w-3{
  width:0.75rem
}

.htw-w-32{
  width:8rem
}

.htw-w-4{
  width:1rem
}

.htw-w-5{
  width:1.25rem
}

.htw-w-6{
  width:1.5rem
}

.htw-w-64{
  width:16rem
}

.htw-w-8{
  width:2rem
}

.htw-w-\[16px\]{
  width:16px
}

.htw-w-\[2px\]{
  width:2px
}

.htw-w-fit{
  width:-moz-fit-content;
  width:fit-content
}

.htw-w-full{
  width:100%
}

.htw-w-max{
  width:-moz-max-content;
  width:max-content
}

.htw-w-px{
  width:1px
}

.htw-w-screen{
  width:100vw
}

.htw-min-w-0{
  min-width:0px
}

.htw-min-w-16{
  min-width:4rem
}

.htw-min-w-4{
  min-width:1rem
}

.htw-min-w-\[150px\]{
  min-width:150px
}

.htw-min-w-\[80px\]{
  min-width:80px
}

.htw-max-w-6{
  max-width:1.5rem
}

.htw-max-w-\[400px\]{
  max-width:400px
}

.htw-max-w-\[512px\]{
  max-width:512px
}

.htw-max-w-\[63px\]{
  max-width:63px
}

.htw-max-w-\[82px\]{
  max-width:82px
}

.htw-max-w-full{
  max-width:100%
}

.htw-max-w-none{
  max-width:none
}

.htw-flex-1{
  flex:1 1 0%
}

.htw-flex-none{
  flex:none
}

.htw-flex-shrink{
  flex-shrink:1
}

.htw-shrink{
  flex-shrink:1
}

.htw-shrink-0{
  flex-shrink:0
}

.htw-grow{
  flex-grow:1
}

.htw-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))
}

.htw-scale-0{
  --tw-scale-x:0;
  --tw-scale-y:0;
  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))
}

.htw-cursor-default{
  cursor:default
}

.htw-cursor-ew-resize{
  cursor:ew-resize
}

.htw-cursor-ns-resize{
  cursor:ns-resize
}

.htw-cursor-nwse-resize{
  cursor:nwse-resize
}

.htw-cursor-pointer{
  cursor:pointer
}

.htw-cursor-text{
  cursor:text
}

.htw-select-none{
  -webkit-user-select:none;
     -moz-user-select:none;
          user-select:none
}

.htw-resize-none{
  resize:none
}

.htw-resize-y{
  resize:vertical
}

.htw-appearance-none{
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none
}

.htw-grid-cols-\[repeat\(auto-fill\,minmax\(200px\,1fr\)\)\]{
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr))
}

.htw-flex-row{
  flex-direction:row
}

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

.htw-flex-wrap{
  flex-wrap:wrap
}

.htw-flex-nowrap{
  flex-wrap:nowrap
}

.htw-place-content-between{
  place-content:space-between
}

.htw-items-start{
  align-items:flex-start
}

.htw-items-end{
  align-items:flex-end
}

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

.htw-items-baseline{
  align-items:baseline
}

.htw-items-stretch{
  align-items:stretch
}

.htw-justify-end{
  justify-content:flex-end
}

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

.htw-justify-evenly{
  justify-content:space-evenly
}

.htw-gap-0\.5{
  gap:0.125rem
}

.htw-gap-1{
  gap:0.25rem
}

.htw-gap-12{
  gap:3rem
}

.htw-gap-2{
  gap:0.5rem
}

.htw-gap-4{
  gap:1rem
}

.htw-gap-6{
  gap:1.5rem
}

.htw-gap-px{
  gap:1px
}

.htw-gap-x-2{
  -moz-column-gap:0.5rem;
       column-gap:0.5rem
}

.htw-gap-y-1{
  row-gap:0.25rem
}

.htw-space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:0;
  margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:calc(1rem * var(--tw-space-y-reverse))
}

.htw-divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse:0;
  border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width:calc(1px * var(--tw-divide-y-reverse))
}

.htw-divide-gray-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-100) / var(--tw-divide-opacity, 1))
}

.htw-divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-200) / var(--tw-divide-opacity, 1))
}

.htw-overflow-auto{
  overflow:auto
}

.htw-overflow-hidden{
  overflow:hidden
}

.htw-overflow-y-auto{
  overflow-y:auto
}

.htw-overflow-y-scroll{
  overflow-y:scroll
}

.htw-scroll-smooth{
  scroll-behavior:smooth
}

.htw-truncate{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}

.htw-text-ellipsis{
  text-overflow:ellipsis
}

.htw-whitespace-nowrap{
  white-space:nowrap
}

.\!htw-rounded-\[3px\]{
  border-radius:3px !important
}

.htw-rounded{
  border-radius:0.375rem
}

.htw-rounded-full{
  border-radius:9999px
}

.htw-rounded-lg{
  border-radius:0.75rem
}

.htw-rounded-sm{
  border-radius:0.25rem
}

.htw-rounded-b-lg{
  border-bottom-right-radius:0.75rem;
  border-bottom-left-radius:0.75rem
}

.htw-rounded-l{
  border-top-left-radius:0.375rem;
  border-bottom-left-radius:0.375rem
}

.htw-rounded-r{
  border-top-right-radius:0.375rem;
  border-bottom-right-radius:0.375rem
}

.htw-rounded-r-lg{
  border-top-right-radius:0.75rem;
  border-bottom-right-radius:0.75rem
}

.htw-border{
  border-width:1px
}

.htw-border-0{
  border-width:0px
}

.htw-border-2{
  border-width:2px
}

.htw-border-8{
  border-width:8px
}

.htw-border-b{
  border-bottom-width:1px
}

.htw-border-l-2{
  border-left-width:2px
}

.htw-border-r{
  border-right-width:1px
}

.htw-border-t{
  border-top-width:1px
}

.htw-border-solid{
  border-style:solid
}

.htw-border-none{
  border-style:none
}

.htw-border-black\/20{
  border-color:rgb(0 0 0 / 0.2)
}

.htw-border-black\/25{
  border-color:rgb(0 0 0 / 0.25)
}

.htw-border-black\/50{
  border-color:rgb(0 0 0 / 0.5)
}

.htw-border-current{
  border-color:currentColor
}

.htw-border-gray-100{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-100) / var(--tw-border-opacity, 1))
}

.htw-border-gray-200{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-200) / var(--tw-border-opacity, 1))
}

.htw-border-gray-300\/30{
  border-color:rgb(var(--_histoire-color-gray-300) / 0.3)
}

.htw-border-gray-500\/10{
  border-color:rgb(var(--_histoire-color-gray-500) / 0.1)
}

.htw-border-gray-500\/30{
  border-color:rgb(var(--_histoire-color-gray-500) / 0.3)
}

.htw-border-gray-500\/40{
  border-color:rgb(var(--_histoire-color-gray-500) / 0.4)
}

.htw-border-gray-500\/5{
  border-color:rgb(var(--_histoire-color-gray-500) / 0.05)
}

.htw-border-gray-500\/50{
  border-color:rgb(var(--_histoire-color-gray-500) / 0.5)
}

.htw-border-gray-600{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-600) / var(--tw-border-opacity, 1))
}

.htw-border-gray-800{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-800) / var(--tw-border-opacity, 1))
}

.htw-border-gray-850{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-850) / var(--tw-border-opacity, 1))
}

.htw-border-primary-200{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-200) / var(--tw-border-opacity, 1))
}

.htw-border-primary-500{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.htw-border-primary-900{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-900) / var(--tw-border-opacity, 1))
}

.htw-border-transparent{
  border-color:transparent
}

.\!htw-bg-primary-500{
  --tw-bg-opacity:1 !important;
  background-color:rgb(var(--_histoire-color-primary-500) / var(--tw-bg-opacity, 1)) !important
}

.htw-bg-gray-100{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-100) / var(--tw-bg-opacity, 1))
}

.htw-bg-gray-200{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-200) / var(--tw-bg-opacity, 1))
}

.htw-bg-gray-400\/25{
  background-color:rgb(var(--_histoire-color-gray-400) / 0.25)
}

.htw-bg-gray-50{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-50) / var(--tw-bg-opacity, 1))
}

.htw-bg-gray-500\/10{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.1)
}

.htw-bg-gray-500\/50{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.5)
}

.htw-bg-gray-700{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-700) / var(--tw-bg-opacity, 1))
}

.htw-bg-gray-800{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-800) / var(--tw-bg-opacity, 1))
}

.htw-bg-primary-200{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-200) / var(--tw-bg-opacity, 1))
}

.htw-bg-primary-50{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-50) / var(--tw-bg-opacity, 1))
}

.htw-bg-primary-500{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-500) / var(--tw-bg-opacity, 1))
}

.htw-bg-primary-500\/10{
  background-color:rgb(var(--_histoire-color-primary-500) / 0.1)
}

.htw-bg-primary-500\/20{
  background-color:rgb(var(--_histoire-color-primary-500) / 0.2)
}

.htw-bg-primary-500\/25{
  background-color:rgb(var(--_histoire-color-primary-500) / 0.25)
}

.htw-bg-primary-700{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-700) / var(--tw-bg-opacity, 1))
}

.htw-bg-primary-800{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-800) / var(--tw-bg-opacity, 1))
}

.htw-bg-transparent{
  background-color:transparent
}

.htw-bg-white{
  --tw-bg-opacity:1;
  background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.htw-bg-white\/80{
  background-color:rgb(255 255 255 / 0.8)
}

.htw-fill-primary-500{
  fill:rgb(var(--_histoire-color-primary-500))
}

.htw-fill-transparent{
  fill:transparent
}

.htw-stroke-white{
  stroke:#fff
}

.htw-stroke-2{
  stroke-width:2
}

.htw-p-1{
  padding:0.25rem
}

.htw-p-2{
  padding:0.5rem
}

.htw-p-4{
  padding:1rem
}

.htw-p-8{
  padding:2rem
}

.htw-p-px{
  padding:1px
}

.htw-px-0\.5{
  padding-left:0.125rem;
  padding-right:0.125rem
}

.htw-px-1{
  padding-left:0.25rem;
  padding-right:0.25rem
}

.htw-px-2{
  padding-left:0.5rem;
  padding-right:0.5rem
}

.htw-px-4{
  padding-left:1rem;
  padding-right:1rem
}

.htw-px-6{
  padding-left:1.5rem;
  padding-right:1.5rem
}

.htw-py-0\.5{
  padding-top:0.125rem;
  padding-bottom:0.125rem
}

.htw-py-1{
  padding-top:0.25rem;
  padding-bottom:0.25rem
}

.htw-py-12{
  padding-top:3rem;
  padding-bottom:3rem
}

.htw-py-2{
  padding-top:0.5rem;
  padding-bottom:0.5rem
}

.htw-py-3{
  padding-top:0.75rem;
  padding-bottom:0.75rem
}

.htw-py-4{
  padding-top:1rem;
  padding-bottom:1rem
}

.htw-pl-0{
  padding-left:0px
}

.htw-pl-0\.5{
  padding-left:0.125rem
}

.htw-pl-2{
  padding-left:0.5rem
}

.htw-pl-4{
  padding-left:1rem
}

.htw-pl-6{
  padding-left:1.5rem
}

.htw-pr-2{
  padding-right:0.5rem
}

.htw-pr-6{
  padding-right:1.5rem
}

.htw-pt-4{
  padding-top:1rem
}

.htw-text-left{
  text-align:left
}

.htw-text-center{
  text-align:center
}

.htw-font-mono{
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

.htw-text-2xl{
  font-size:1.5rem;
  line-height:2rem
}

.htw-text-5xl{
  font-size:3rem;
  line-height:1
}

.htw-text-lg{
  font-size:1.125rem;
  line-height:1.75rem
}

.htw-text-sm{
  font-size:0.875rem;
  line-height:1.25rem
}

.htw-text-xs{
  font-size:0.75rem;
  line-height:1rem
}

.htw-font-bold{
  font-weight:700
}

.htw-uppercase{
  text-transform:uppercase
}

.htw-leading-none{
  line-height:1
}

.htw-leading-normal{
  line-height:1.5
}

.htw-text-black\/\[1\%\]{
  color:rgb(0 0 0 / 1%)
}

.htw-text-gray-400{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-400) / var(--tw-text-opacity, 1))
}

.htw-text-gray-500{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-500) / var(--tw-text-opacity, 1))
}

.htw-text-gray-500\/20{
  color:rgb(var(--_histoire-color-gray-500) / 0.2)
}

.htw-text-gray-700{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-700) / var(--tw-text-opacity, 1))
}

.htw-text-gray-900{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-900) / var(--tw-text-opacity, 1))
}

.htw-text-inherit{
  color:inherit
}

.htw-text-orange-500{
  --tw-text-opacity:1;
  color:rgb(249 115 22 / var(--tw-text-opacity, 1))
}

.htw-text-primary-200{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-200) / var(--tw-text-opacity, 1))
}

.htw-text-primary-400{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-400) / var(--tw-text-opacity, 1))
}

.htw-text-primary-500{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-500) / var(--tw-text-opacity, 1))
}

.htw-text-primary-600{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-600) / var(--tw-text-opacity, 1))
}

.htw-text-primary-800{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-800) / var(--tw-text-opacity, 1))
}

.htw-text-red-500{
  --tw-text-opacity:1;
  color:rgb(239 68 68 / var(--tw-text-opacity, 1))
}

.htw-text-white{
  --tw-text-opacity:1;
  color:rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.htw-opacity-0{
  opacity:0
}

.htw-opacity-20{
  opacity:0.2
}

.htw-opacity-25{
  opacity:0.25
}

.htw-opacity-30{
  opacity:0.3
}

.htw-opacity-40{
  opacity:0.4
}

.htw-opacity-50{
  opacity:0.5
}

.htw-opacity-60{
  opacity:0.6
}

.htw-opacity-70{
  opacity:0.7
}

.htw-shadow-xl{
  --tw-shadow:0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.htw-outline-none{
  outline:2px solid transparent;
  outline-offset:2px
}

.htw-transition-all{
  transition-property:all;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms
}

.htw-transition-border{
  transition-property:border;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms
}

.htw-transition-colors{
  transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms
}

.htw-transition-none{
  transition-property:none
}

.htw-transition-transform{
  transition-property:transform;
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:150ms
}

.htw-delay-150{
  transition-delay:150ms
}

.htw-duration-150{
  transition-duration:150ms
}

.htw-duration-200{
  transition-duration:200ms
}

.htw-duration-300{
  transition-duration:300ms
}

.htw-ease-\[cubic-bezier\(0\,1\,\.6\,1\)\]{
  transition-timing-function:cubic-bezier(0,1,.6,1)
}

.htw-ease-in-out{
  transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)
}

.htw-ease-out{
  transition-timing-function:cubic-bezier(0, 0, 0.2, 1)
}

.htw-will-change-transform{
  will-change:transform
}

.dark\:htw-prose-invert:is(.htw-dark *){
  --tw-prose-body:var(--tw-prose-invert-body);
  --tw-prose-headings:var(--tw-prose-invert-headings);
  --tw-prose-lead:var(--tw-prose-invert-lead);
  --tw-prose-links:var(--tw-prose-invert-links);
  --tw-prose-bold:var(--tw-prose-invert-bold);
  --tw-prose-counters:var(--tw-prose-invert-counters);
  --tw-prose-bullets:var(--tw-prose-invert-bullets);
  --tw-prose-hr:var(--tw-prose-invert-hr);
  --tw-prose-quotes:var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);
  --tw-prose-captions:var(--tw-prose-invert-captions);
  --tw-prose-kbd:var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code:var(--tw-prose-invert-code);
  --tw-prose-pre-code:var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders:var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders:var(--tw-prose-invert-td-borders)
}

.first\:htw-mt-0:first-child{
  margin-top:0px
}

.last\:htw-mb-0:last-child{
  margin-bottom:0px
}

.focus-within\:htw-border-primary-500:focus-within{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.focus-within\:htw-bg-gray-500\/5:focus-within{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.05)
}

.hover\:htw-border-primary-500:hover{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.hover\:htw-bg-gray-200:hover{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-200) / var(--tw-bg-opacity, 1))
}

.hover\:htw-bg-gray-500\/10:hover{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.1)
}

.hover\:htw-bg-gray-500\/20:hover{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.2)
}

.hover\:htw-bg-gray-500\/30:hover{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.3)
}

.hover\:htw-bg-primary-100:hover{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-100) / var(--tw-bg-opacity, 1))
}

.hover\:htw-bg-primary-200:hover{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-200) / var(--tw-bg-opacity, 1))
}

.hover\:htw-bg-primary-300:hover{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-300) / var(--tw-bg-opacity, 1))
}

.hover\:htw-bg-primary-50:hover{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-50) / var(--tw-bg-opacity, 1))
}

.hover\:htw-bg-primary-500\/10:hover{
  background-color:rgb(var(--_histoire-color-primary-500) / 0.1)
}

.hover\:htw-bg-primary-500\/30:hover{
  background-color:rgb(var(--_histoire-color-primary-500) / 0.3)
}

.hover\:htw-bg-primary-500\/50:hover{
  background-color:rgb(var(--_histoire-color-primary-500) / 0.5)
}

.hover\:htw-bg-primary-600:hover{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-600) / var(--tw-bg-opacity, 1))
}

.hover\:htw-text-primary-500:hover{
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-500) / var(--tw-text-opacity, 1))
}

.hover\:htw-opacity-100:hover{
  opacity:1
}

.focus\:htw-border-primary-500:focus{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.focus\:htw-border-primary-500\/50:focus{
  border-color:rgb(var(--_histoire-color-primary-500) / 0.5)
}

.focus\:htw-opacity-100:focus{
  opacity:1
}

.focus-visible\:htw-border-primary-500:focus-visible{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.active\:htw-bg-gray-600\/50:active{
  background-color:rgb(var(--_histoire-color-gray-600) / 0.5)
}

.htw-group:first-child .group-first\:htw-hidden{
  display:none
}

.htw-group:nth-child(odd) .group-odd\:htw-bg-gray-100\/50{
  background-color:rgb(var(--_histoire-color-gray-100) / 0.5)
}

.htw-group:focus-within .group-focus-within\:htw-visible{
  visibility:visible
}

.htw-group:hover .group-hover\:htw-flex{
  display:flex
}

.htw-group:hover .group-hover\:htw-border-primary-500{
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.htw-group:hover .group-hover\:htw-bg-primary-100{
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-100) / var(--tw-bg-opacity, 1))
}

.htw-group:hover .group-hover\:htw-opacity-100{
  opacity:1
}

.htw-group:hover .group-hover\:htw-opacity-90{
  opacity:0.9
}

.htw-group:active .group-active\:htw-bg-gray-500\/20{
  background-color:rgb(var(--_histoire-color-gray-500) / 0.2)
}

.dark\:htw-divide-gray-750:is(.htw-dark *) > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-750) / var(--tw-divide-opacity, 1))
}

.dark\:htw-divide-gray-800:is(.htw-dark *) > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-800) / var(--tw-divide-opacity, 1))
}

.dark\:htw-divide-gray-850:is(.htw-dark *) > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-850) / var(--tw-divide-opacity, 1))
}

.dark\:htw-border-gray-700\/30:is(.htw-dark *){
  border-color:rgb(var(--_histoire-color-gray-700) / 0.3)
}

.dark\:htw-border-gray-750:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-750) / var(--tw-border-opacity, 1))
}

.dark\:htw-border-gray-800:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-800) / var(--tw-border-opacity, 1))
}

.dark\:htw-border-gray-850:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-gray-850) / var(--tw-border-opacity, 1))
}

.dark\:htw-border-primary-900:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-900) / var(--tw-border-opacity, 1))
}

.dark\:htw-border-white\/20:is(.htw-dark *){
  border-color:rgb(255 255 255 / 0.2)
}

.dark\:htw-border-white\/25:is(.htw-dark *){
  border-color:rgb(255 255 255 / 0.25)
}

.dark\:htw-border-white\/50:is(.htw-dark *){
  border-color:rgb(255 255 255 / 0.5)
}

.dark\:htw-bg-black:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-gray-600:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-600) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-gray-700:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-700) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-gray-750:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-750) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-gray-900:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-900) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-gray-900\/80:is(.htw-dark *){
  background-color:rgb(var(--_histoire-color-gray-900) / 0.8)
}

.dark\:htw-bg-primary-400:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-400) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-primary-600:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-600) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-primary-700:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-700) / var(--tw-bg-opacity, 1))
}

.dark\:htw-bg-primary-800:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-800) / var(--tw-bg-opacity, 1))
}

.dark\:htw-text-black:is(.htw-dark *){
  --tw-text-opacity:1;
  color:rgb(0 0 0 / var(--tw-text-opacity, 1))
}

.dark\:htw-text-gray-100:is(.htw-dark *){
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-100) / var(--tw-text-opacity, 1))
}

.dark\:htw-text-gray-300:is(.htw-dark *){
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-gray-300) / var(--tw-text-opacity, 1))
}

.dark\:htw-text-primary-200:is(.htw-dark *){
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-200) / var(--tw-text-opacity, 1))
}

.dark\:htw-text-primary-400:is(.htw-dark *){
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-400) / var(--tw-text-opacity, 1))
}

.dark\:htw-text-white\/\[1\%\]:is(.htw-dark *){
  color:rgb(255 255 255 / 1%)
}

.dark\:focus-within\:htw-border-primary-500:focus-within:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.dark\:hover\:htw-border-primary-500:hover:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.dark\:hover\:htw-bg-gray-800:hover:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-gray-800) / var(--tw-bg-opacity, 1))
}

.dark\:hover\:htw-bg-primary-700:hover:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-700) / var(--tw-bg-opacity, 1))
}

.dark\:hover\:htw-bg-primary-800:hover:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-800) / var(--tw-bg-opacity, 1))
}

.dark\:hover\:htw-bg-primary-900:hover:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-900) / var(--tw-bg-opacity, 1))
}

.dark\:hover\:htw-text-primary-400:hover:is(.htw-dark *){
  --tw-text-opacity:1;
  color:rgb(var(--_histoire-color-primary-400) / var(--tw-text-opacity, 1))
}

.dark\:focus\:htw-border-primary-500:focus:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.htw-group:nth-child(odd) .dark\:group-odd\:htw-bg-gray-750\/40:is(.htw-dark *){
  background-color:rgb(var(--_histoire-color-gray-750) / 0.4)
}

.htw-group:hover .group-hover\:dark\:htw-border-primary-500:is(.htw-dark *){
  --tw-border-opacity:1;
  border-color:rgb(var(--_histoire-color-primary-500) / var(--tw-border-opacity, 1))
}

.htw-group:hover .dark\:group-hover\:htw-bg-primary-700:is(.htw-dark *){
  --tw-bg-opacity:1;
  background-color:rgb(var(--_histoire-color-primary-700) / var(--tw-bg-opacity, 1))
}

@media (min-width: 640px){
  .sm\:htw-h-4{
    height:1rem
  }

  .sm\:htw-w-4{
    width:1rem
  }

  .sm\:htw-p-1{
    padding:0.25rem
  }

  .sm\:htw-py-4{
    padding-top:1rem;
    padding-bottom:1rem
  }
}

@media (min-width: 768px){
  .md\:htw-mx-auto{
    margin-left:auto;
    margin-right:auto
  }

  .md\:htw-mt-16{
    margin-top:4rem
  }

  .md\:htw-block{
    display:block
  }

  .md\:htw-max-w-\[600px\]{
    max-width:600px
  }

  .md\:htw-flex-col{
    flex-direction:column
  }

  .md\:htw-p-12{
    padding:3rem
  }

  .md\:htw-py-1\.5{
    padding-top:0.375rem;
    padding-bottom:0.375rem
  }
}

@media (min-width: 1024px){
  .lg\:htw-max-w-\[800px\]{
    max-width:800px
  }
}

@media (min-width: 1280px){
  .xl\:htw-max-w-\[900px\]{
    max-width:900px
  }
}

@media (max-width: 767px){
  .\!md\:htw-flex-col{
    flex-direction:column
  }
}

.histoire-story-list-folder-button:hover .\[\.histoire-story-list-folder-button\:hover_\&\]\:htw-opacity-100{
  opacity:1
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-tree-margin[data-v-64c2458f] {
  margin-left: var(--2562213a);
}
.bind-icon-color[data-v-64c2458f] {
  color: var(--1eff521f);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-tree-padding[data-v-ee932a0c] {
  padding-left: var(--5352bb71);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-icon-color[data-v-d15ecb89] {
  color: var(--a3f02f4e);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.landscape > div > .dragger[data-v-4f40a1bb] {
  width: .625rem;
}
.portrait > div > .dragger[data-v-4f40a1bb] {
  height: .625rem;
}
.landscape > div > .dragger.dragger-offset-before[data-v-4f40a1bb] {
  right: 0;
}
.portrait > div > .dragger.dragger-offset-before[data-v-4f40a1bb] {
  bottom: 0;
}
.landscape > div > .dragger.dragger-offset-center[data-v-4f40a1bb] {
  right: -.3125rem;
}
.portrait > div > .dragger.dragger-offset-center[data-v-4f40a1bb] {
  bottom: -.3125rem;
}
.landscape > div > .dragger.dragger-offset-after[data-v-4f40a1bb] {
  right: -.625rem;
}
.portrait > div > .dragger.dragger-offset-after[data-v-4f40a1bb] {
  bottom: -.625rem;
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.htw-base-empty[data-v-c5ecfead]:not(.no-animation) {
  animation: htw-base-empty-c5ecfead .15s .2s both;
}
@keyframes htw-base-empty-c5ecfead {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.__histoire-code-placeholder[data-v-96af7f40] {
  color: inherit;
  font-size: inherit;
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-preview-bg[data-v-c48fb2b2] {
  background-color: var(--627bec82);
  color: var(--35068428);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-icon-color[data-v-feff9239] {
  color: var(--60afaf4d);
}
.bind-preview-bg[data-v-feff9239] {
  background-color: var(--3bd99e7e);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-icon-color[data-v-1b279b85] {
  color: var(--ab2181a2);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.__histoire-hatched-pattern[data-v-91561117] {
  background: repeating-linear-gradient(135deg,
  transparent 0px,
  transparent 32px,
  currentColor 32px,
  currentColor 64px);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-preview-bg[data-v-18122333] {
  background-color: var(--5f6f4ee9);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-icon-color[data-v-c2a43485] {
  color: var(--41c4d268);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-icon-color[data-v-096f6d6e] {
  color: var(--0f021d3c);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
img.colorize-black[data-v-2114f510] {
  filter: grayscale(100) brightness(0);
}
}
@scope (:root) to (.__histoire-render-story:not(.__histoire-render-custom-controls)) {
.bind-icon-color[data-v-9f94ad2b] {
  color: var(--1f9aa6ca);
}
}
.htw-bind-col-size{grid-template-columns:repeat(auto-fill,minmax(var(--histoire-col-size),1fr))}.__histoire-json-code[data-v-d4369e5a] .cm-editor{height:100%;min-width:280px}.v-popper{line-height:0}.htw-dark .v-popper--theme-dropdown .v-popper__inner{--tw-border-opacity: 1;border-color:rgb(31 31 33 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(244 244 245 / var(--tw-text-opacity, 1))}.htw-dark .v-popper--theme-dropdown .v-popper__arrow-inner{--tw-border-opacity: 1;border-color:rgb(63 63 70 / var(--tw-border-opacity, 1))}.htw-dark .v-popper--theme-dropdown .v-popper__arrow-outer{--tw-border-opacity: 1;border-color:rgb(31 31 33 / var(--tw-border-opacity, 1))}.v-popper--theme-dropdown.v-popper__popper--show-from .v-popper__wrapper{transform:scale(.75)}.v-popper--theme-dropdown.v-popper__popper--show-to .v-popper__wrapper{transform:none;transition:transform .15s cubic-bezier(0,1,.5,1)}.v-popper__popper:focus-visible{outline:none}.htw-range-input::-webkit-slider-thumb{height:.75rem;width:.75rem;-webkit-appearance:none;appearance:none;border-radius:9999px;border-width:1px;border-style:solid;border-color:#00000040;--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.htw-range-input:is(.htw-dark *)::-webkit-slider-thumb{border-color:#ffffff40;--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1))}.htw-range-input:hover::-webkit-slider-thumb{--tw-border-opacity: 1 !important;border-color:rgb(16 185 129 / var(--tw-border-opacity, 1))!important;--tw-bg-opacity: 1 !important;background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))!important}.htw-range-input::-moz-range-thumb{height:.75rem;width:.75rem;-moz-appearance:none;appearance:none;border-radius:9999px;border-width:1px;border-style:solid;border-color:#00000040;--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.htw-range-input:is(.htw-dark *)::-moz-range-thumb{border-color:#ffffff40;--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1))}.htw-range-input:hover::-moz-range-thumb{--tw-border-opacity: 1 !important;border-color:rgb(16 185 129 / var(--tw-border-opacity, 1))!important;--tw-bg-opacity: 1 !important;background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))!important}html,
body {
  background: transparent !important;
}body {
  margin: 0;
}html {
  font-size: 1rem;
  font-family: 'Noto Sans Display', system-ui, sans-serif;
}.htw-sandbox-hidden {
  display: none;
}.__histoire-render-story:not(.__histoire-render-custom-controls) {
  overflow: auto;
  min-height: 100%;
}

.cv-flow-enter-active[data-v-fddd8cdc],
.cv-flow-leave-active[data-v-fddd8cdc] {
  transition: transform 180ms ease, opacity 180ms ease;
}
.cv-flow-enter-from[data-v-fddd8cdc] {
  transform: translateX(24px);
  opacity: 0;
}
.cv-flow-enter-to[data-v-fddd8cdc] {
  transform: translateX(0);
  opacity: 1;
}

/* optionnel: pop */
.cv-flow-leave-from[data-v-fddd8cdc] {
  transform: translateX(0);
  opacity: 1;
}
.cv-flow-leave-to[data-v-fddd8cdc] {
  transform: translateX(24px);
  opacity: 0;
}

.cv-input-wrapper[data-v-4f420426] {
  width: 100%;
}
.cv-input[data-v-4f420426] {
  width: 100%;
  padding: var(--cv-ui-spacing-sm) var(--cv-ui-spacing-md);
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  font-weight: var(--cv-ui-font-weight-normal);
  color: var(--cv-ui-text-primary);
  background-color: var(--cv-ui-bg-primary);
  border: 1px solid var(--cv-ui-border-color);
  border-radius: var(--cv-ui-radius-md);
  box-shadow: var(--cv-ui-shadow-sm);
  transition:
    border-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    box-shadow var(--cv-ui-transition-fast) var(--cv-ui-transition-timing);
  outline: none;
}
.cv-input[data-v-4f420426]::placeholder {
  color: var(--cv-ui-text-tertiary);
}
.cv-input[data-v-4f420426]:hover:not(.cv-input--disabled) {
  border-color: var(--cv-ui-border-color-hover);
}
.cv-input[data-v-4f420426]:focus {
  border-color: var(--cv-ui-border-color-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.cv-input--disabled[data-v-4f420426] {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: var(--cv-ui-bg-tertiary);
  color: var(--cv-ui-text-disabled);
}
.cv-input--error[data-v-4f420426] {
  border-color: var(--cv-ui-border-color-error);
}
.cv-input--error[data-v-4f420426]:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.cv-input--success[data-v-4f420426] {
  border-color: var(--cv-ui-color-success);
}
.cv-input--textarea[data-v-4f420426] {
  min-height: 80px;
  resize: vertical;
}
.cv-input-feedback[data-v-4f420426] {
  margin-top: var(--cv-ui-spacing-xs);
  font-size: var(--cv-ui-font-size-xs);
}
.cv-input-feedback--error[data-v-4f420426] {
  color: var(--cv-ui-color-danger);
}
.cv-input-feedback--success[data-v-4f420426] {
  color: var(--cv-ui-color-success);
}

.cv-select-wrapper[data-v-cbb41418] {
  position: relative;
  width: 100%;
}
.cv-select[data-v-cbb41418] {
  width: 100%;
  padding: var(--cv-ui-spacing-sm) var(--cv-ui-spacing-md);
  padding-right: 2rem;
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  font-weight: var(--cv-ui-font-weight-normal);
  color: var(--cv-ui-text-primary);
  background-color: var(--cv-ui-bg-primary);
  border: 1px solid var(--cv-ui-border-color);
  border-radius: var(--cv-ui-radius-md);
  box-shadow: var(--cv-ui-shadow-sm);
  transition:
    border-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    box-shadow var(--cv-ui-transition-fast) var(--cv-ui-transition-timing);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--cv-ui-spacing-md) center;
}
.cv-select[data-v-cbb41418]:hover:not(.cv-select--disabled) {
  border-color: var(--cv-ui-border-color-hover);
}
.cv-select[data-v-cbb41418]:focus {
  border-color: var(--cv-ui-border-color-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.cv-select--disabled[data-v-cbb41418] {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: var(--cv-ui-bg-tertiary);
  color: var(--cv-ui-text-disabled);
}
.cv-select--error[data-v-cbb41418] {
  border-color: var(--cv-ui-border-color-error);
}
.cv-select--success[data-v-cbb41418] {
  border-color: var(--cv-ui-color-success);
}
.cv-select--multiple[data-v-cbb41418] {
  padding-right: var(--cv-ui-spacing-md);
  min-height: 100px;
  background-image: none;
}
.cv-select-loading[data-v-cbb41418] {
  position: absolute;
  right: var(--cv-ui-spacing-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--cv-ui-text-tertiary);
  pointer-events: none;
}
.cv-select-feedback[data-v-cbb41418] {
  margin-top: var(--cv-ui-spacing-xs);
  font-size: var(--cv-ui-font-size-xs);
}
.cv-select-feedback--error[data-v-cbb41418] {
  color: var(--cv-ui-color-danger);
}
.cv-select-feedback--success[data-v-cbb41418] {
  color: var(--cv-ui-color-success);
}

.cv-button[data-v-75f9db49] {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cv-ui-spacing-sm);
  font-family: var(--cv-ui-font-family);
  font-weight: var(--cv-ui-font-weight-medium);
  border-radius: var(--cv-ui-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    border-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    box-shadow var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    transform 0.12s var(--cv-ui-transition-timing);
  outline: none;
}

/* Onde en bordure au clic : anneau qui s’échappe du contour */
.cv-button[data-v-75f9db49]::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  transform: scale(1);
  opacity: 0;
  pointer-events: none;
}
.cv-button[data-v-75f9db49]:active:not(.cv-button--disabled):not(.cv-button--loading)::after {
  animation: cv-button-ring-75f9db49 0.5s ease-out forwards;
}
.cv-button[data-v-75f9db49]:active:not(.cv-button--disabled):not(.cv-button--loading) {
  transform: scale(0.97);
}
@keyframes cv-button-ring-75f9db49 {
0% {
    transform: scale(1);
    opacity: 0.9;
}
100% {
    transform: scale(1.12);
    opacity: 0;
}
}

/* Bordure visible sur outline/subtle (couleur du bouton) */
.cv-button--outline.cv-button--primary[data-v-75f9db49]::after,
.cv-button--subtle.cv-button--primary[data-v-75f9db49]::after {
  border-color: rgba(59, 130, 246, 0.6);
}
.cv-button--outline.cv-button--secondary[data-v-75f9db49]::after,
.cv-button--subtle.cv-button--secondary[data-v-75f9db49]::after {
  border-color: rgba(107, 114, 128, 0.6);
}
.cv-button--outline.cv-button--danger[data-v-75f9db49]::after,
.cv-button--subtle.cv-button--danger[data-v-75f9db49]::after {
  border-color: rgba(239, 68, 68, 0.6);
}
.cv-button--outline.cv-button--success[data-v-75f9db49]::after,
.cv-button--subtle.cv-button--success[data-v-75f9db49]::after {
  border-color: rgba(16, 185, 129, 0.6);
}
.cv-button[data-v-75f9db49]:focus-visible {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* Sizes */
.cv-button--sm[data-v-75f9db49] {
  padding: var(--cv-ui-spacing-xs) var(--cv-ui-spacing-sm);
  font-size: var(--cv-ui-font-size-xs);
}
.cv-button--md[data-v-75f9db49] {
  padding: var(--cv-ui-spacing-sm) var(--cv-ui-spacing-md);
  font-size: var(--cv-ui-font-size-sm);
}
.cv-button--lg[data-v-75f9db49] {
  padding: var(--cv-ui-spacing-md) var(--cv-ui-spacing-lg);
  font-size: var(--cv-ui-font-size-md);
}

/* Solid + Primary */
.cv-button--solid.cv-button--primary[data-v-75f9db49] {
  background-color: var(--cv-ui-color-primary);
  color: var(--cv-ui-text-inverse);
  border-color: var(--cv-ui-color-primary);
}
.cv-button--solid.cv-button--primary[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-primary-hover);
  border-color: var(--cv-ui-color-primary-hover);
}

/* Solid + Secondary */
.cv-button--solid.cv-button--secondary[data-v-75f9db49] {
  background-color: var(--cv-ui-color-secondary);
  color: var(--cv-ui-text-inverse);
  border-color: var(--cv-ui-color-secondary);
}
.cv-button--solid.cv-button--secondary[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-secondary-hover);
  border-color: var(--cv-ui-color-secondary-hover);
}

/* Solid + Danger */
.cv-button--solid.cv-button--danger[data-v-75f9db49] {
  background-color: var(--cv-ui-color-danger);
  color: var(--cv-ui-text-inverse);
  border-color: var(--cv-ui-color-danger);
}
.cv-button--solid.cv-button--danger[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-danger-hover);
  border-color: var(--cv-ui-color-danger-hover);
}

/* Solid + Success */
.cv-button--solid.cv-button--success[data-v-75f9db49] {
  background-color: var(--cv-ui-color-success);
  color: var(--cv-ui-text-inverse);
  border-color: var(--cv-ui-color-success);
}
.cv-button--solid.cv-button--success[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-success-hover);
  border-color: var(--cv-ui-color-success-hover);
}

/* Outline + Primary */
.cv-button--outline.cv-button--primary[data-v-75f9db49] {
  background-color: transparent;
  color: var(--cv-ui-color-primary);
  border-color: var(--cv-ui-color-primary);
}
.cv-button--outline.cv-button--primary[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-primary-light);
}

/* Outline + Secondary */
.cv-button--outline.cv-button--secondary[data-v-75f9db49] {
  background-color: transparent;
  color: var(--cv-ui-color-secondary);
  border-color: var(--cv-ui-border-color);
}
.cv-button--outline.cv-button--secondary[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-bg-hover);
  border-color: var(--cv-ui-border-color-hover);
}

/* Outline + Danger */
.cv-button--outline.cv-button--danger[data-v-75f9db49] {
  background-color: transparent;
  color: var(--cv-ui-color-danger);
  border-color: var(--cv-ui-color-danger);
}
.cv-button--outline.cv-button--danger[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-danger-light);
}

/* Outline + Success */
.cv-button--outline.cv-button--success[data-v-75f9db49] {
  background-color: transparent;
  color: var(--cv-ui-color-success);
  border-color: var(--cv-ui-color-success);
}
.cv-button--outline.cv-button--success[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-success-light);
}

/* Subtle + Primary */
.cv-button--subtle.cv-button--primary[data-v-75f9db49] {
  background-color: var(--cv-ui-color-primary-light);
  color: var(--cv-ui-color-primary-dark);
  border-color: transparent;
}
.cv-button--subtle.cv-button--primary[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-primary);
  color: var(--cv-ui-text-inverse);
}

/* Subtle + Secondary */
.cv-button--subtle.cv-button--secondary[data-v-75f9db49] {
  background-color: var(--cv-ui-bg-tertiary);
  color: var(--cv-ui-text-primary);
  border-color: transparent;
}
.cv-button--subtle.cv-button--secondary[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-bg-active);
}

/* Subtle + Danger */
.cv-button--subtle.cv-button--danger[data-v-75f9db49] {
  background-color: var(--cv-ui-color-danger-light);
  color: var(--cv-ui-color-danger-dark);
  border-color: transparent;
}
.cv-button--subtle.cv-button--danger[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-danger);
  color: var(--cv-ui-text-inverse);
}

/* Subtle + Success */
.cv-button--subtle.cv-button--success[data-v-75f9db49] {
  background-color: var(--cv-ui-color-success-light);
  color: var(--cv-ui-color-success-dark);
  border-color: transparent;
}
.cv-button--subtle.cv-button--success[data-v-75f9db49]:hover:not(.cv-button--disabled) {
  background-color: var(--cv-ui-color-success);
  color: var(--cv-ui-text-inverse);
}
.cv-button--disabled[data-v-75f9db49],
.cv-button--loading[data-v-75f9db49] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cv-button-loading[data-v-75f9db49] {
  font-size: 1.2em;
}

.cv-checkbox[data-v-04d469db] {
  display: inline-flex;
  align-items: center;
  gap: var(--cv-ui-spacing-sm);
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  color: var(--cv-ui-text-primary);
  cursor: pointer;
  user-select: none;
}
.cv-checkbox--disabled[data-v-04d469db] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cv-checkbox__input[data-v-04d469db] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.cv-checkbox__box[data-v-04d469db] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid var(--cv-ui-border-color);
  border-radius: var(--cv-ui-radius-sm);
  background-color: var(--cv-ui-bg-primary);
  transition:
    border-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    background-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    box-shadow var(--cv-ui-transition-fast) var(--cv-ui-transition-timing);
}
.cv-checkbox:hover:not(.cv-checkbox--disabled) .cv-checkbox__box[data-v-04d469db] {
  border-color: var(--cv-ui-border-color-hover);
}
.cv-checkbox__input:focus-visible + .cv-checkbox__box[data-v-04d469db] {
  border-color: var(--cv-ui-border-color-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.cv-checkbox__input:checked + .cv-checkbox__box[data-v-04d469db],
.cv-checkbox__input:indeterminate + .cv-checkbox__box[data-v-04d469db] {
  background-color: var(--cv-ui-color-primary);
  border-color: var(--cv-ui-color-primary);
}
.cv-checkbox__check[data-v-04d469db],
.cv-checkbox__indeterminate[data-v-04d469db] {
  color: var(--cv-ui-text-inverse);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.cv-checkbox--error .cv-checkbox__box[data-v-04d469db] {
  border-color: var(--cv-ui-border-color-error);
}
.cv-checkbox__label[data-v-04d469db] {
  flex: 1;
  min-width: 0;
}

.cv-switch[data-v-09e5313a] {
  display: inline-flex;
  align-items: center;
  gap: var(--cv-ui-spacing-sm);
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  color: var(--cv-ui-text-primary);
  cursor: pointer;
  user-select: none;
}
.cv-switch--disabled[data-v-09e5313a] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cv-switch__input[data-v-09e5313a] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.cv-switch__track[data-v-09e5313a] {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  border-radius: var(--cv-ui-radius-full);
  background-color: var(--cv-ui-border-color);
  transition: background-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing);
}
.cv-switch:hover:not(.cv-switch--disabled) .cv-switch__track[data-v-09e5313a] {
  background-color: var(--cv-ui-border-color-hover);
}
.cv-switch__input:focus-visible + .cv-switch__track[data-v-09e5313a] {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.cv-switch--checked .cv-switch__track[data-v-09e5313a] {
  background-color: var(--cv-ui-color-primary);
}
.cv-switch--checked:hover:not(.cv-switch--disabled) .cv-switch__track[data-v-09e5313a] {
  background-color: var(--cv-ui-color-primary-hover);
}
.cv-switch__thumb[data-v-09e5313a] {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: var(--cv-ui-radius-full);
  background-color: var(--cv-ui-bg-primary);
  box-shadow: var(--cv-ui-shadow-sm);
  transition: transform var(--cv-ui-transition-fast) var(--cv-ui-transition-timing);
}
.cv-switch--checked .cv-switch__thumb[data-v-09e5313a] {
  transform: translateX(18px);
}
.cv-switch__label[data-v-09e5313a] {
  flex: 1;
  min-width: 0;
}

.cv-radio[data-v-ff520bc5] {
  display: inline-flex;
  align-items: center;
  gap: var(--cv-ui-spacing-sm);
  font-family: var(--cv-ui-font-family);
  font-size: var(--cv-ui-font-size-sm);
  color: var(--cv-ui-text-primary);
  cursor: pointer;
  user-select: none;
}
.cv-radio--disabled[data-v-ff520bc5] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cv-radio__input[data-v-ff520bc5] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.cv-radio__circle[data-v-ff520bc5] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid var(--cv-ui-border-color);
  border-radius: var(--cv-ui-radius-full);
  background-color: var(--cv-ui-bg-primary);
  transition:
    border-color var(--cv-ui-transition-fast) var(--cv-ui-transition-timing),
    box-shadow var(--cv-ui-transition-fast) var(--cv-ui-transition-timing);
}
.cv-radio:not(.cv-radio--disabled):hover .cv-radio__circle[data-v-ff520bc5] {
  border-color: var(--cv-ui-border-color-hover);
}
.cv-radio__input:focus-visible + .cv-radio__circle[data-v-ff520bc5] {
  border-color: var(--cv-ui-border-color-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.cv-radio--checked .cv-radio__circle[data-v-ff520bc5] {
  border-color: var(--cv-ui-color-primary);
  background-color: var(--cv-ui-bg-primary);
}
.cv-radio__dot[data-v-ff520bc5] {
  width: 8px;
  height: 8px;
  border-radius: var(--cv-ui-radius-full);
  background-color: var(--cv-ui-color-primary);
}
.cv-radio__label[data-v-ff520bc5] {
  flex: 1;
  min-width: 0;
}

.cv-radio-group[data-v-29bbb346] {
  display: flex;
  flex-direction: column;
  gap: var(--cv-ui-spacing-sm);
}

/* Fond clair forcé + tokens light pour que tout soit lisible quel que soit le thème Histoire */
.ui-catalogue[data-v-8f81b7ee] {
  --ui-cat-bg: #ffffff;
  --ui-cat-bg-soft: #f1f5f9;
  --ui-cat-text: #1e293b;
  --ui-cat-text-muted: #475569;
  --ui-cat-border: #e2e8f0;
  /* Surcharge tokens en mode clair pour les composants enfants */
  --cv-ui-bg-primary: #ffffff;
  --cv-ui-bg-secondary: #f8fafc;
  --cv-ui-bg-tertiary: #f1f5f9;
  --cv-ui-text-primary: #1e293b;
  --cv-ui-text-secondary: #475569;
  --cv-ui-text-tertiary: #64748b;
  --cv-ui-text-disabled: #94a3b8;
  --cv-ui-border-color: #e2e8f0;
  --cv-ui-border-color-hover: #cbd5e1;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100%;
  font-family: var(--cv-ui-font-family);
  background: var(--ui-cat-bg);
  color: var(--ui-cat-text);
  box-shadow: 0 0 0 1px var(--ui-cat-border);
}
.ui-catalogue__title[data-v-8f81b7ee] {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--ui-cat-text);
  letter-spacing: -0.02em;
}
.ui-catalogue__section[data-v-8f81b7ee] {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ui-cat-border);
}
.ui-catalogue__section[data-v-8f81b7ee]:last-of-type {
  border-bottom: none;
}
.ui-catalogue__section-title[data-v-8f81b7ee] {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ui-cat-text);
}
.ui-catalogue__subtitle[data-v-8f81b7ee] {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ui-cat-text-muted);
}
.ui-catalogue__grid[data-v-8f81b7ee] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ui-catalogue__grid--wrap[data-v-8f81b7ee] {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.ui-catalogue__item[data-v-8f81b7ee] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.ui-catalogue__item--row[data-v-8f81b7ee] {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  max-width: none;
}
.ui-catalogue__label[data-v-8f81b7ee] {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ui-cat-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ui-catalogue__buttons[data-v-8f81b7ee] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.ui-catalogue__block[data-v-8f81b7ee] {
  margin-bottom: 24px;
}
.ui-catalogue__switch-label[data-v-8f81b7ee] {
  font-size: 0.875rem;
  color: var(--ui-cat-text-muted);
}
.ui-catalogue__hint[data-v-8f81b7ee] {
  font-size: 0.875rem;
  color: var(--ui-cat-text-muted);
  margin-top: 8px;
}
.ui-catalogue__section--data .ui-catalogue__pre[data-v-8f81b7ee] {
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 16px;
  background: var(--ui-cat-bg-soft);
  border: 1px solid var(--ui-cat-border);
  border-radius: 8px;
  overflow: auto;
  margin: 0;
  color: var(--ui-cat-text);
}

.ui-story[data-v-d110efe3] {
  padding: 24px;
  font-family: var(--cv-ui-font-family);
}
.ui-story__block[data-v-d110efe3] {
  margin-bottom: 24px;
}
.ui-story__subtitle[data-v-d110efe3] {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--cv-ui-text-secondary);
}
.ui-story__row[data-v-d110efe3] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ui-story[data-v-4d09fd6e] {
  padding: 24px;
  font-family: var(--cv-ui-font-family);
}
.ui-story__grid[data-v-4d09fd6e] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ui-story[data-v-b069b0c3] {
  padding: 24px;
  font-family: var(--cv-ui-font-family);
}
.ui-story__grid[data-v-b069b0c3] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ui-story__item[data-v-b069b0c3] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.ui-story__label[data-v-b069b0c3] {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cv-ui-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ui-story[data-v-9380d57a] {
  padding: 24px;
  font-family: var(--cv-ui-font-family);
}
.ui-story__block[data-v-9380d57a] {
  margin-bottom: 16px;
}
.ui-story__hint[data-v-9380d57a] {
  font-size: 0.875rem;
  color: var(--cv-ui-text-secondary);
  margin-top: 8px;
}

.ui-story[data-v-c53de5e7] {
  padding: 24px;
  font-family: var(--cv-ui-font-family);
}
.ui-story__grid[data-v-c53de5e7] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ui-story__item[data-v-c53de5e7] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.ui-story__label[data-v-c53de5e7] {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cv-ui-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ui-story[data-v-4ad6d1b4] {
  padding: 24px;
  font-family: var(--cv-ui-font-family);
}
.ui-story__row[data-v-4ad6d1b4] {
  display: flex;
  gap: 16px;
}
.ui-story__row--wrap[data-v-4ad6d1b4] {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.ui-story__item-row[data-v-4ad6d1b4] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ui-story__hint[data-v-4ad6d1b4] {
  font-size: 0.875rem;
  color: var(--cv-ui-text-secondary);
}
/**
 * DataTable Tool Panels Styles
 * 
 * Styles for AG Grid Enterprise Side Bar tool panels (Columns, Filters, etc.)
 * These styles complement the base AG Grid theme.
 */

/* Hide only AG Grid's fake vertical scrollbar to prevent duplication */
.ag-body-vertical-scroll {
  display: none !important;
}

/* Style the horizontal fake scrollbar container - keep it visible for fixed position */
.ag-body-horizontal-scroll {
  height: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
}

/* Style the horizontal scrollbar viewport inside the fake scrollbar */
.ag-body-horizontal-scroll-viewport {
  height: 12px !important;
  min-height: 12px !important;
  max-height: 12px !important;
}

/* Global scrollbar styling for AG Grid - target only real browser scrollbars */
/* Style vertical scrollbar on ag-body-viewport */
.ag-body-viewport::-webkit-scrollbar {
  width: 12px !important;
  height: 0 !important; /* Hide horizontal scrollbar completely */
}

/* Force vertical scrollbar only on ag-body-viewport */
.ag-body-viewport {
  /* Hide horizontal scrollbar but keep vertical */
  scrollbar-width: thin !important; /* Firefox - vertical only */
  scrollbar-color: var(--ag-accent-color, #3b82f6) var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
}

/* Hide horizontal scrollbar on center cols viewport and container (they have native scrollbars) */
.ag-center-cols-viewport::-webkit-scrollbar,
.ag-center-cols-container::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

/* Style horizontal scrollbar ONLY on fake scrollbar viewport (the one that stays fixed) */
.ag-body-horizontal-scroll-viewport::-webkit-scrollbar,
.ag-side-bar::-webkit-scrollbar,
.ag-side-bar *::-webkit-scrollbar,
.ag-tool-panel::-webkit-scrollbar,
.ag-tool-panel *::-webkit-scrollbar,
.ag-columns-panel::-webkit-scrollbar,
.ag-columns-panel *::-webkit-scrollbar,
.ag-filters-panel::-webkit-scrollbar,
.ag-filters-panel *::-webkit-scrollbar {
  width: 12px !important;
  height: 12px !important;
}

/* Scrollbar track on ag-body-viewport (vertical only, horizontal is hidden) */
.ag-body-viewport::-webkit-scrollbar-track {
  background: var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
  border-radius: 6px !important;
  margin: 2px !important;
}

/* Hide horizontal scrollbar track on center cols (they use fake scrollbar) */
.ag-center-cols-viewport::-webkit-scrollbar-track,
.ag-center-cols-container::-webkit-scrollbar-track {
  display: none !important;
}

/* Horizontal scrollbar track on fake scrollbar viewport */
.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-track,
.ag-side-bar::-webkit-scrollbar-track,
.ag-side-bar *::-webkit-scrollbar-track,
.ag-tool-panel::-webkit-scrollbar-track,
.ag-tool-panel *::-webkit-scrollbar-track,
.ag-columns-panel::-webkit-scrollbar-track,
.ag-columns-panel *::-webkit-scrollbar-track,
.ag-filters-panel::-webkit-scrollbar-track,
.ag-filters-panel *::-webkit-scrollbar-track {
  background: var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
  border-radius: 6px !important;
  margin: 2px !important;
}

/* Scrollbar thumb on ag-body-viewport (vertical only) */
.ag-body-viewport::-webkit-scrollbar-thumb {
  background: var(--ag-accent-color, #3b82f6) !important;
  border-radius: 6px !important;
  border: 2px solid var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
  background-clip: padding-box !important;
  transition: all 0.2s ease !important;
  min-height: 30px !important;
}

/* Hide horizontal scrollbar thumb on center cols (they use fake scrollbar) */
.ag-center-cols-viewport::-webkit-scrollbar-thumb,
.ag-center-cols-container::-webkit-scrollbar-thumb {
  display: none !important;
}

/* Horizontal scrollbar thumb on fake scrollbar viewport */
.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb,
.ag-side-bar::-webkit-scrollbar-thumb,
.ag-side-bar *::-webkit-scrollbar-thumb,
.ag-tool-panel::-webkit-scrollbar-thumb,
.ag-tool-panel *::-webkit-scrollbar-thumb,
.ag-columns-panel::-webkit-scrollbar-thumb,
.ag-columns-panel *::-webkit-scrollbar-thumb,
.ag-filters-panel::-webkit-scrollbar-thumb,
.ag-filters-panel *::-webkit-scrollbar-thumb {
  background: var(--ag-accent-color, #3b82f6) !important;
  border-radius: 6px !important;
  border: 2px solid var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
  background-clip: padding-box !important;
  transition: all 0.2s ease !important;
  min-height: 30px !important;
  min-width: 30px !important;
}

/* Scrollbar thumb hover on ag-body-viewport (vertical only) */
.ag-body-viewport::-webkit-scrollbar-thumb:hover {
  background: var(--ag-accent-color, #2563eb) !important;
  border-color: var(--ag-background-color, rgba(241, 245, 249, 0.8)) !important;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4) !important;
}

.ag-body-viewport::-webkit-scrollbar-thumb:active {
  background: var(--ag-accent-color, #1d4ed8) !important;
}

/* Horizontal scrollbar thumb hover on fake scrollbar viewport */
.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb:hover,
.ag-side-bar::-webkit-scrollbar-thumb:hover,
.ag-side-bar *::-webkit-scrollbar-thumb:hover,
.ag-tool-panel::-webkit-scrollbar-thumb:hover,
.ag-tool-panel *::-webkit-scrollbar-thumb:hover,
.ag-columns-panel::-webkit-scrollbar-thumb:hover,
.ag-columns-panel *::-webkit-scrollbar-thumb:hover,
.ag-filters-panel::-webkit-scrollbar-thumb:hover,
.ag-filters-panel *::-webkit-scrollbar-thumb:hover {
  background: var(--ag-accent-color, #2563eb) !important;
  border-color: var(--ag-background-color, rgba(241, 245, 249, 0.8)) !important;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4) !important;
}

.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb:active,
.ag-side-bar::-webkit-scrollbar-thumb:active,
.ag-side-bar *::-webkit-scrollbar-thumb:active,
.ag-tool-panel::-webkit-scrollbar-thumb:active,
.ag-tool-panel *::-webkit-scrollbar-thumb:active,
.ag-columns-panel::-webkit-scrollbar-thumb:active,
.ag-columns-panel *::-webkit-scrollbar-thumb:active,
.ag-filters-panel::-webkit-scrollbar-thumb:active,
.ag-filters-panel *::-webkit-scrollbar-thumb:active {
  background: var(--ag-accent-color, #1d4ed8) !important;
}

/* Hide scrollbar corner on ag-body-viewport (where horizontal and vertical meet) */
.ag-body-viewport::-webkit-scrollbar-corner {
  display: none !important;
}

/* Scrollbar corner on other elements */
.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-corner,
.ag-side-bar::-webkit-scrollbar-corner,
.ag-side-bar *::-webkit-scrollbar-corner,
.ag-tool-panel::-webkit-scrollbar-corner,
.ag-tool-panel *::-webkit-scrollbar-corner,
.ag-columns-panel::-webkit-scrollbar-corner,
.ag-columns-panel *::-webkit-scrollbar-corner,
.ag-filters-panel::-webkit-scrollbar-corner,
.ag-filters-panel *::-webkit-scrollbar-corner {
  background: var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
  border-radius: 6px !important;
}

/* Firefox scrollbar for AG Grid elements (exclude fake scrollbars) */
/* Note: .ag-body-viewport and .ag-center-cols-viewport/.ag-center-cols-container are handled separately above to hide horizontal scrollbar */
.ag-body-horizontal-scroll-viewport,
.ag-side-bar,
.ag-side-bar *,
.ag-tool-panel,
.ag-tool-panel *,
.ag-columns-panel,
.ag-columns-panel *,
.ag-filters-panel,
.ag-filters-panel * {
  scrollbar-width: thin !important;
  scrollbar-color: var(--ag-accent-color, #3b82f6) var(--ag-background-color, rgba(241, 245, 249, 0.5)) !important;
}

/* Ensure sideBar and tool panels react to theme changes */
/* Force background color update when theme changes */
.ag-side-bar,
.ag-tool-panel,
.ag-columns-panel,
.ag-filters-panel {
  /* Use chromeBackgroundColor from theme, fallback to background-color */
  background-color: var(--ag-chrome-background-color, var(--ag-background-color, #ffffff)) !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode support for sideBar */
[data-ag-theme-mode="dark"] .ag-side-bar,
[data-ag-theme-mode="dark"] .ag-tool-panel,
[data-ag-theme-mode="dark"] .ag-columns-panel,
[data-ag-theme-mode="dark"] .ag-filters-panel,
.ag-theme-quartz-dark .ag-side-bar,
.ag-theme-quartz-dark .ag-tool-panel,
.ag-theme-quartz-dark .ag-columns-panel,
.ag-theme-quartz-dark .ag-filters-panel,
.ag-theme-alpine-dark .ag-side-bar,
.ag-theme-alpine-dark .ag-tool-panel,
.ag-theme-alpine-dark .ag-columns-panel,
.ag-theme-alpine-dark .ag-filters-panel,
.ag-theme-balham-dark .ag-side-bar,
.ag-theme-balham-dark .ag-tool-panel,
.ag-theme-balham-dark .ag-columns-panel,
.ag-theme-balham-dark .ag-filters-panel {
  background-color: var(--ag-chrome-background-color, var(--ag-background-color, #1e293b)) !important;
}

/* Hide horizontal scrollbar on center cols for Firefox */
.ag-center-cols-viewport,
.ag-center-cols-container {
  scrollbar-width: none !important; /* Hide horizontal scrollbar - use fake scrollbar instead */
}

.theme-story[data-v-11526c2b] {
  padding: 24px;
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--cv-ui-font-family);
  background: var(--cv-ui-bg-primary);
  color: var(--cv-ui-text-primary);
}
.theme-story__note[data-v-11526c2b] {
  font-size: 0.875rem;
  color: var(--cv-ui-text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.theme-story__note code[data-v-11526c2b],
.theme-story__hint code[data-v-11526c2b] {
  font-size: 0.8em;
  padding: 2px 6px;
  background: var(--cv-ui-bg-tertiary);
  border-radius: var(--cv-ui-radius-sm);
}
.theme-story__block[data-v-11526c2b] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.theme-story__hint[data-v-11526c2b] {
  font-size: 0.75rem;
  color: var(--cv-ui-text-tertiary);
  margin-top: 20px;
  line-height: 1.4;
}

.cv-data-table__grid-inner[data-v-78e897b3] .ag-root-wrapper {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Allow scroll to work properly */
}

/* When using autoHeight, AG Grid should adapt to content */
.cv-data-table__grid-inner[style*="height: auto"][data-v-78e897b3] .ag-root-wrapper {
  height: auto;
  flex: 0 1 auto;
}
.cv-data-table__grid-inner[data-v-78e897b3] .ag-root {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Allow scroll to work properly */
}

/* When using autoHeight, AG Grid root should adapt to content */
.cv-data-table__grid-inner[style*="height: auto"][data-v-78e897b3] .ag-root {
  height: auto;
  flex: 0 1 auto;
}
.cv-data-table__grid-inner[data-v-78e897b3] .ag-body-viewport {
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-x: hidden; /* Hide horizontal scrollbar - use fake scrollbar instead */
  overflow-y: auto; /* Keep vertical scrollbar */
}

/* When using autoHeight, body viewport should adapt */
.cv-data-table__grid-inner[style*="height: auto"][data-v-78e897b3] .ag-body-viewport {
  flex: 0 1 auto;
  overflow: visible;
}

/* Theme transition animations - subtle and performant */
.cv-data-table__grid-wrapper[data-v-78e897b3] .ag-root-wrapper {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Apply border radius to AG Grid root wrapper to match grid-inner */
.cv-data-table__grid-inner[data-v-78e897b3] .ag-root-wrapper {
  border-radius: inherit !important;
  /* Don't set overflow here - let children handle scrolling */
}

/* Apply border radius to AG Grid root element */
.cv-data-table__grid-inner[data-v-78e897b3] .ag-root {
  border-radius: inherit !important;
  /* Don't set overflow here - let children handle scrolling */
}

/* Apply border radius to header */
.cv-data-table__grid-inner[data-v-78e897b3] .ag-header {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  overflow: hidden;
}

/* Apply border radius to body viewport */
.cv-data-table__grid-inner[data-v-78e897b3] .ag-body-viewport {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

/* Apply border radius to body horizontal scroll container */
.cv-data-table__grid-inner[data-v-78e897b3] .ag-body-horizontal-scroll {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

/* Ensure all AG Grid containers respect border radius */
.cv-data-table__grid-inner[data-v-78e897b3] .ag-body,
.cv-data-table__grid-inner[data-v-78e897b3] .ag-center-cols-container,
.cv-data-table__grid-inner[data-v-78e897b3] .ag-center-cols-clipper {
  border-radius: inherit;
}

.cv-data-table__edit-layout[data-v-07a76cc1] {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Default: minimal styling when not in edit mode */
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only apply edit layout styling when in edit mode */
.cv-data-table__edit-layout--edit-mode[data-v-07a76cc1] {
  border-radius: 12px;
  /* Light mode (default) */
  --edit-layout-bg-start: #F8FAFC;
  --edit-layout-bg-mid: #F1F5F9;
  --edit-layout-bg-end: #E2E8F0;
  --edit-layout-border: rgba(100, 116, 139, 0.2);
  --edit-layout-text: #1E293B;
  --edit-layout-text-secondary: #64748B;
  /* Container backgrounds */
  --edit-layout-container-bg: rgba(255, 255, 255, 0.85);
  --edit-layout-container-bg-hover: rgba(255, 255, 255, 0.95);
  --edit-layout-input-bg: rgba(255, 255, 255, 1);
  --edit-layout-card-bg: rgba(255, 255, 255, 0.9);
  --edit-layout-card-active-bg: rgba(248, 250, 252, 1);
  --edit-layout-button-bg: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, var(--edit-layout-bg-start) 0%, var(--edit-layout-bg-mid) 50%, var(--edit-layout-bg-end) 100%);
  /* Single box-shadow to avoid accumulation */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--edit-layout-border);
}

/* Dark mode - only applies when in edit mode */
.cv-data-table__edit-layout--edit-mode.cv-data-table__edit-layout--dark[data-v-07a76cc1] {
  /* Dark mode */
  --edit-layout-bg-start: #1E293B;
  --edit-layout-bg-mid: #0F172A;
  --edit-layout-bg-end: #020617;
  --edit-layout-border: rgba(148, 163, 184, 0.25);
  --edit-layout-text: #F1F5F9;
  --edit-layout-text-secondary: #94A3B8;
  /* Container backgrounds */
  --edit-layout-container-bg: rgba(30, 41, 59, 0.75);
  --edit-layout-container-bg-hover: rgba(30, 41, 59, 0.9);
  --edit-layout-input-bg: rgba(15, 23, 42, 0.95);
  --edit-layout-card-bg: rgba(30, 41, 59, 0.85);
  --edit-layout-card-active-bg: rgba(51, 65, 85, 1);
  --edit-layout-button-bg: rgba(30, 41, 59, 0.9);
  /* Single box-shadow to avoid accumulation */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.cv-data-table__edit-layout__content[data-v-07a76cc1] {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  /* Remove any potential border/shadow conflicts with parent */
  border: none;
  box-shadow: none;
}
.cv-data-table__edit-layout__theme-builder[data-v-07a76cc1] {
  flex-shrink: 0;
  width: 320px;
  height: 100%;
  overflow-y: auto;
  align-self: flex-start;
}

/* ThemeBuilder and PresetSlider now use CSS variables directly - no overrides needed */
.cv-data-table__edit-layout__right-side[data-v-07a76cc1] {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.cv-data-table__edit-layout__preset-slider[data-v-07a76cc1] {
  flex-shrink: 0;
  width: 100%;
}
.cv-data-table__edit-layout__grid-wrapper[data-v-07a76cc1] {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  /* Remove any potential border/shadow conflicts with parent */
  border: none;
  box-shadow: none;
}

/* Preset Slider Transition */
.preset-slider-enter-active[data-v-07a76cc1],
.preset-slider-leave-active[data-v-07a76cc1] {
  transition: all 0.3s ease;
}
.preset-slider-enter-from[data-v-07a76cc1] {
  opacity: 0;
  transform: translateY(-20px);
}
.preset-slider-leave-to[data-v-07a76cc1] {
  opacity: 0;
  transform: translateY(-20px);
}

/* Theme Builder Transition */
.theme-builder-slide-enter-active[data-v-07a76cc1],
.theme-builder-slide-leave-active[data-v-07a76cc1] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-builder-slide-enter-from[data-v-07a76cc1] {
  opacity: 0;
  transform: translateX(-100%);
}
.theme-builder-slide-leave-to[data-v-07a76cc1] {
  opacity: 0;
  transform: translateX(-100%);
}

.cv-data-table__quick-filter[data-v-dcff88a4] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
}
.cv-data-table__quick-filter__input[data-v-dcff88a4] {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  /* Use theme accent color for border */
  border: 2px solid var(--accent-color, rgba(226, 232, 240, 1));
  border-radius: 6px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.2s ease;
}
.cv-data-table__quick-filter__input[data-v-dcff88a4]:focus {
  outline: none;
  /* Use theme accent color on focus */
  border-color: var(--accent-color, #3b82f6);
  /* Box shadow with accent color - using RGB values from CSS variable */
  box-shadow: 0 0 0 3px rgba(var(--accent-color-rgb, 59, 130, 246), 0.1);
}
.cv-data-table__quick-filter__input[data-v-dcff88a4]::placeholder {
  color: #94a3b8;
}

/* Transition */
.quick-filter-enter-active[data-v-dcff88a4],
.quick-filter-leave-active[data-v-dcff88a4] {
  transition: all 0.3s ease;
}
.quick-filter-enter-from[data-v-dcff88a4] {
  opacity: 0;
  transform: translateY(-10px);
}
.quick-filter-leave-to[data-v-dcff88a4] {
  opacity: 0;
  transform: translateY(-10px);
}

.cv-theme-builder[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, var(--edit-layout-bg-start, #F8FAFC) 0%, var(--edit-layout-bg-mid, #F1F5F9) 50%, var(--edit-layout-bg-end, #E2E8F0) 100%);
  /* Single border on right to avoid conflicts with parent */
  border-right: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.15));
  border-top: none;
  border-bottom: none;
  border-left: none;
  overflow: hidden;
  position: relative;
  /* Remove box-shadow to avoid conflicts with parent */
  box-shadow: none;
}
.cv-theme-builder[data-v-b7ccd8a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.3), transparent);
}
.cv-theme-builder__page-heading[data-v-b7ccd8a5] {
  padding: 1.5rem 1rem 1rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.08) 0%, transparent 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cv-theme-builder__page-heading[data-v-b7ccd8a5]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.25), transparent);
}
.cv-theme-builder__page-title[data-v-b7ccd8a5] {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--edit-layout-text, #1E293B);
  letter-spacing: -0.02em;
  flex: 1;
}

/* Close button (hidden on desktop, visible on mobile) */
.cv-theme-builder__close-btn[data-v-b7ccd8a5] {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 8px;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cv-theme-builder__close-btn[data-v-b7ccd8a5]:hover {
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(100, 116, 139, 0.3);
  color: #334155;
  transform: scale(1.05);
}
.cv-theme-builder__close-btn[data-v-b7ccd8a5]:active {
  transform: scale(0.95);
}
.cv-theme-builder__close-icon[data-v-b7ccd8a5] {
  width: 20px;
  height: 20px;
}
.cv-theme-builder__content[data-v-b7ccd8a5] {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
}
.cv-theme-builder__content[data-v-b7ccd8a5]::-webkit-scrollbar {
  width: 8px;
}
.cv-theme-builder__content[data-v-b7ccd8a5]::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.1);
  border-radius: 4px;
}
.cv-theme-builder__content[data-v-b7ccd8a5]::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.4) 0%, rgba(71, 85, 105, 0.4) 100%);
  border-radius: 4px;
  border: 1px solid rgba(100, 116, 139, 0.2);
}
.cv-theme-builder__content[data-v-b7ccd8a5]::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.6) 0%, rgba(71, 85, 105, 0.6) 100%);
}
.cv-theme-builder__accordion[data-v-b7ccd8a5] {
  margin-bottom: 0.5rem;
  border: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.2));
  border-radius: 10px;
  overflow: hidden;
  background: var(--edit-layout-container-bg, rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cv-theme-builder__accordion[data-v-b7ccd8a5]:hover {
  border-color: rgba(100, 116, 139, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.cv-theme-builder__accordion-header[data-v-b7ccd8a5] {
  margin: 0;
}
.cv-theme-builder__accordion-trigger[data-v-b7ccd8a5] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--edit-layout-text, #334155);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.cv-theme-builder__accordion-trigger[data-v-b7ccd8a5]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #64748B 0%, #475569 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cv-theme-builder__accordion-trigger[data-v-b7ccd8a5]:hover {
  background: rgba(148, 163, 184, 0.08);
  color: var(--edit-layout-text, #1E293B);
}
.cv-theme-builder__accordion-trigger[data-v-b7ccd8a5]:hover::before {
  opacity: 1;
}
.cv-theme-builder__chevron[data-v-b7ccd8a5] {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--edit-layout-text-secondary, #64748B);
  flex-shrink: 0;
}
.cv-theme-builder__chevron--open[data-v-b7ccd8a5] {
  transform: rotate(180deg);
  color: var(--edit-layout-text-secondary, #475569);
}
.cv-theme-builder__accordion-content[data-v-b7ccd8a5] {
  padding: 1rem;
  background: var(--edit-layout-container-bg, rgba(248, 250, 252, 0.8));
  border-top: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.15));
}
.cv-theme-builder__field-group[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cv-theme-builder__field[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.cv-theme-builder__label[data-v-b7ccd8a5] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--edit-layout-text-secondary, #475569);
}
.cv-theme-builder__info-icon[data-v-b7ccd8a5] {
  opacity: 0.6;
  cursor: help;
  color: var(--edit-layout-text-secondary, #64748B);
  transition: all 0.3s ease;
}
.cv-theme-builder__info-icon[data-v-b7ccd8a5]:hover {
  opacity: 1;
  color: var(--edit-layout-text-secondary, #475569);
}
.cv-theme-builder__input[data-v-b7ccd8a5],
.cv-theme-builder__select[data-v-b7ccd8a5] {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.8125rem;
  border: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.2));
  border-radius: 8px;
  background: var(--edit-layout-input-bg, rgba(255, 255, 255, 1));
  color: var(--edit-layout-text, #1E293B);
  transition: all 0.3s ease;
}
.cv-theme-builder__input[data-v-b7ccd8a5]:focus,
.cv-theme-builder__select[data-v-b7ccd8a5]:focus {
  outline: none;
  border-color: var(--edit-layout-text-secondary, #64748B);
  /* Single box-shadow to avoid accumulation */
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.2);
  background: var(--edit-layout-input-bg, rgba(255, 255, 255, 1));
}
.cv-theme-builder__input-with-slider[data-v-b7ccd8a5] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cv-theme-builder__input-with-slider .cv-theme-builder__input[data-v-b7ccd8a5] {
  flex: 1;
}
.cv-theme-builder__slider-icon[data-v-b7ccd8a5] {
  color: var(--ag-foreground-color, #94a3b8);
  cursor: ew-resize;
  display: flex;
  align-items: center;
}

/* Input with range slider */
.cv-theme-builder__input-with-range[data-v-b7ccd8a5] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cv-theme-builder__range[data-v-b7ccd8a5] {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(148, 163, 184, 0.2);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cv-theme-builder__range[data-v-b7ccd8a5]:hover {
  background: rgba(148, 163, 184, 0.3);
}
.cv-theme-builder__range[data-v-b7ccd8a5]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #64748B 0%, #475569 100%);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.cv-theme-builder__range[data-v-b7ccd8a5]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.cv-theme-builder__range[data-v-b7ccd8a5]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #64748B 0%, #475569 100%);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.cv-theme-builder__range[data-v-b7ccd8a5]::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.cv-theme-builder__input-number[data-v-b7ccd8a5] {
  width: 70px;
  padding: 0.5rem;
  font-size: 0.8125rem;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  color: #1E293B;
  transition: all 0.3s ease;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}
.cv-theme-builder__input-number[data-v-b7ccd8a5]::-webkit-outer-spin-button,
.cv-theme-builder__input-number[data-v-b7ccd8a5]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cv-theme-builder__input-number[data-v-b7ccd8a5]:focus {
  outline: none;
  border-color: #64748B;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15), 0 0 0 1px rgba(100, 116, 139, 0.2);
  background: rgba(255, 255, 255, 1);
}
.cv-theme-builder__unit[data-v-b7ccd8a5] {
  font-size: 0.75rem;
  color: var(--edit-layout-text-secondary, #64748B);
  font-weight: 500;
  min-width: 24px;
  text-align: left;
}
.cv-theme-builder__color-input[data-v-b7ccd8a5] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.cv-theme-builder__color-picker[data-v-b7ccd8a5] {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid rgba(100, 116, 139, 0.25);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.cv-theme-builder__color-picker[data-v-b7ccd8a5]:hover {
  border-color: #64748B;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}
.cv-theme-builder__presets-grid[data-v-b7ccd8a5] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

/* Hide presets section on desktop (desktop uses PresetSlider above table) */
@media (min-width: 1025px) {
.cv-theme-builder__accordion--presets[data-v-b7ccd8a5] {
    display: none !important;
}
}
.cv-theme-builder__preset-card[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 2px solid var(--edit-layout-border, rgba(100, 116, 139, 0.2));
  border-radius: 12px;
  background: var(--edit-layout-card-bg, rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.cv-theme-builder__preset-card[data-v-b7ccd8a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.08) 0%, rgba(100, 116, 139, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cv-theme-builder__preset-card[data-v-b7ccd8a5]:hover {
  border-color: rgba(100, 116, 139, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cv-theme-builder__preset-card[data-v-b7ccd8a5]:hover::before {
  opacity: 1;
}
.cv-theme-builder__preset-card--active[data-v-b7ccd8a5] {
  border-color: var(--edit-layout-text-secondary, #64748B);
  background: var(--edit-layout-card-active-bg, rgba(248, 250, 252, 1));
  /* Single box-shadow for active state */
  box-shadow: 0 0 0 2px rgba(100, 116, 139, 0.2), inset 0 0 0 1px var(--edit-layout-border, rgba(100, 116, 139, 0.1));
  transform: scale(1.02);
}
.cv-theme-builder__preset-card--active[data-v-b7ccd8a5]::before {
  opacity: 1;
}
.cv-theme-builder__preset-preview[data-v-b7ccd8a5] {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--preview-bg, #ffffff);
  border: 1px solid rgba(100, 116, 139, 0.25);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.cv-theme-builder__preset-card:hover .cv-theme-builder__preset-preview[data-v-b7ccd8a5] {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border-color: rgba(100, 116, 139, 0.4);
}
.cv-theme-builder__preset-preview-header[data-v-b7ccd8a5] {
  height: 20px;
  background: var(--preview-header-bg, #f8fafc);
  border-bottom: 1px solid var(--ag-border-color, #e2e8f0);
}
.cv-theme-builder__preset-preview-row[data-v-b7ccd8a5] {
  flex: 1;
  background: var(--preview-row-bg, #ffffff);
  border-bottom: 1px solid var(--ag-border-color, #e2e8f0);
}
.cv-theme-builder__preset-preview-row[data-v-b7ccd8a5]:last-child {
  border-bottom: none;
}
.cv-theme-builder__preset-info[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cv-theme-builder__preset-label[data-v-b7ccd8a5] {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--edit-layout-text, #334155);
  position: relative;
  z-index: 1;
}
.cv-theme-builder__preset-card--active .cv-theme-builder__preset-label[data-v-b7ccd8a5] {
  color: var(--edit-layout-text, #1E293B);
  font-weight: 700;
}
.cv-theme-builder__preset-desc[data-v-b7ccd8a5] {
  font-size: 0.75rem;
  color: var(--edit-layout-text-secondary, #64748B);
  position: relative;
  z-index: 1;
}
.cv-theme-builder__search[data-v-b7ccd8a5] {
  margin-bottom: 1rem;
}
.cv-theme-builder__search-input[data-v-b7ccd8a5] {
  width: 100%;
  padding: 0.5rem;
  font-size: 0.8125rem;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 1);
  color: #1E293B;
  transition: all 0.3s ease;
}
.cv-theme-builder__search-input[data-v-b7ccd8a5]:focus {
  outline: none;
  border-color: #64748B;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15), 0 0 0 1px rgba(100, 116, 139, 0.2);
  background: rgba(255, 255, 255, 1);
}
.cv-theme-builder__params-list[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cv-theme-builder__param-item[data-v-b7ccd8a5] {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.cv-theme-builder__param-label[data-v-b7ccd8a5] {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--edit-layout-text-secondary, #475569);
}
.cv-theme-builder__empty[data-v-b7ccd8a5] {
  padding: 2rem;
  text-align: center;
  color: var(--ag-disabled-foreground-color, #94a3b8);
  font-size: 0.875rem;
}
.cv-theme-builder__footer[data-v-b7ccd8a5] {
  padding: 1rem;
  border-top: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.2));
  background: linear-gradient(180deg, transparent 0%, rgba(148, 163, 184, 0.05) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.cv-theme-builder__footer[data-v-b7ccd8a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.25), transparent);
}
.cv-theme-builder__footer-actions[data-v-b7ccd8a5] {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.cv-theme-builder__footer-btn[data-v-b7ccd8a5] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.25));
  border-radius: 8px;
  background: var(--edit-layout-button-bg, rgba(255, 255, 255, 0.95));
  color: var(--edit-layout-text-secondary, #475569);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cv-theme-builder__footer-btn[data-v-b7ccd8a5]:hover {
  background: rgba(148, 163, 184, 0.1);
  border-color: var(--edit-layout-text-secondary, #64748B);
  color: var(--edit-layout-text, #334155);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cv-theme-builder__use-btn[data-v-b7ccd8a5] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.cv-theme-builder__use-btn[data-v-b7ccd8a5]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}
.cv-theme-builder__use-btn[data-v-b7ccd8a5]:hover {
  background: linear-gradient(135deg, #64748B 0%, #475569 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.cv-theme-builder__use-btn[data-v-b7ccd8a5]:hover::before {
  left: 100%;
}
.cv-theme-builder__use-btn[data-v-b7ccd8a5]:active {
  transform: translateY(0);
}

.cv-grid-features-modal[data-v-c780e153] {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.cv-grid-features-panel[data-v-c780e153] {
  position: fixed;
  width: 240px;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  /* background and borderColor set via :style from panelThemeColors when preset is used */
  background: var(--cv-panel-background-color, var(--ag-background-color, #1e293b));
  border: 1px solid var(--cv-panel-border-color, var(--ag-border-color, #334155));
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  pointer-events: auto;
  z-index: 2001;
  outline: none; /* Remove focus outline */
}
.cv-grid-features-close[data-v-c780e153]:hover {
  background: var(--cv-panel-row-hover-color, var(--ag-row-hover-color, #334155));
  color: var(--cv-panel-foreground-color, var(--ag-foreground-color, #ffffff));
}
.cv-grid-features-content[data-v-c780e153] {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
  min-height: 0;
}

/* Styled scrollbar */
.cv-grid-features-content[data-v-c780e153]::-webkit-scrollbar {
  width: 6px;
}
.cv-grid-features-content[data-v-c780e153]::-webkit-scrollbar-track {
  background: transparent;
}
.cv-grid-features-content[data-v-c780e153]::-webkit-scrollbar-thumb {
  background: var(--ag-border-color, #334155);
  border-radius: 3px;
  transition: background 0.2s;
}
.cv-grid-features-content[data-v-c780e153]::-webkit-scrollbar-thumb:hover {
  background: var(--ag-foreground-color, #64748b);
}

/* Firefox scrollbar */
.cv-grid-features-content[data-v-c780e153] {
  scrollbar-width: thin;
  scrollbar-color: var(--ag-border-color, #334155) transparent;
}
.cv-grid-features-list[data-v-c780e153] {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.cv-grid-features-item[data-v-c780e153] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  user-select: none;
}
.cv-grid-features-item[data-v-c780e153]:hover {
  background: var(--cv-panel-row-hover-color, var(--ag-row-hover-color, #334155));
}
.cv-grid-features-checkbox[data-v-c780e153] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--cv-panel-accent-color, var(--ag-accent-color, #3b82f6));
}
.cv-grid-features-label[data-v-c780e153] {
  font-size: 0.8125rem;
  color: var(--cv-panel-foreground-color, var(--ag-foreground-color, #e2e8f0));
  flex: 1;
}

/* Modal transitions */
.grid-features-modal-enter-active[data-v-c780e153],
.grid-features-modal-leave-active[data-v-c780e153] {
  transition: opacity 0.2s ease;
}
.grid-features-modal-enter-active .cv-grid-features-panel[data-v-c780e153],
.grid-features-modal-leave-active .cv-grid-features-panel[data-v-c780e153] {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.grid-features-modal-enter-from[data-v-c780e153] {
  opacity: 0;
}
.grid-features-modal-enter-from .cv-grid-features-panel[data-v-c780e153] {
  transform: scale(0.8) translateY(-10px);
  opacity: 0;
}
.grid-features-modal-enter-to[data-v-c780e153] {
  opacity: 1;
}
.grid-features-modal-enter-to .cv-grid-features-panel[data-v-c780e153] {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.grid-features-modal-leave-from[data-v-c780e153] {
  opacity: 1;
}
.grid-features-modal-leave-from .cv-grid-features-panel[data-v-c780e153] {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.grid-features-modal-leave-to[data-v-c780e153] {
  opacity: 0;
}
.grid-features-modal-leave-to .cv-grid-features-panel[data-v-c780e153] {
  transform: scale(0.8) translateY(-10px);
  opacity: 0;
}

.cv-preset-slider[data-v-a739c6a9] {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(180deg, var(--edit-layout-bg-start, #F8FAFC) 0%, var(--edit-layout-bg-mid, #F1F5F9) 100%);
  /* Single border to avoid accumulation with parent */
  border-bottom: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.15));
  border-left: none;
  border-right: none;
  border-top: none;
  position: relative;
  backdrop-filter: blur(10px);
  max-width: 1200px;
  border-top-right-radius: 12px;
  /* Remove box-shadow to avoid conflicts with parent */
  box-shadow: none;
}
.cv-preset-slider[data-v-a739c6a9]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.3), transparent);
}
.cv-preset-slider__container[data-v-a739c6a9] {
  position: relative;
  width: 100%;
}
.cv-preset-slider__track[data-v-a739c6a9] {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 0.5rem;
}
.cv-preset-slider__track[data-v-a739c6a9]::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.cv-preset-slider__preset[data-v-a739c6a9] {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border: 2px solid var(--edit-layout-border, rgba(100, 116, 139, 0.2));
  border-radius: 12px;
  background: var(--edit-layout-card-bg, rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 120px;
  position: relative;
  overflow: hidden;
}
.cv-preset-slider__preset[data-v-a739c6a9]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.08) 0%, rgba(100, 116, 139, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cv-preset-slider__preset[data-v-a739c6a9]:hover {
  border-color: rgba(100, 116, 139, 0.4);
  transform: translateY(-2px);
  /* Single box-shadow on hover */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.cv-preset-slider__preset[data-v-a739c6a9]:hover::before {
  opacity: 1;
}
.cv-preset-slider__preset--active[data-v-a739c6a9] {
  border-color: var(--edit-layout-text-secondary, #64748B);
  background: var(--edit-layout-card-active-bg, rgba(248, 250, 252, 1));
  /* Single box-shadow for active state */
  box-shadow: 0 0 0 2px rgba(100, 116, 139, 0.2), inset 0 0 0 1px var(--edit-layout-border, rgba(100, 116, 139, 0.1));
  transform: scale(1.02);
}
.cv-preset-slider__preset--active[data-v-a739c6a9]::before {
  opacity: 1;
}
.cv-preset-slider__preview[data-v-a739c6a9] {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--preview-bg, #ffffff);
  border: 1px solid rgba(100, 116, 139, 0.25);
  display: flex;
  flex-direction: column;
  /* Single box-shadow */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.cv-preset-slider__preset:hover .cv-preset-slider__preview[data-v-a739c6a9] {
  /* Single box-shadow on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  border-color: rgba(100, 116, 139, 0.4);
}
.cv-preset-slider__preview-header[data-v-a739c6a9] {
  height: 20px;
  background: var(--preview-header-bg, #f8fafc);
  border-bottom: 1px solid var(--ag-border-color, #e2e8f0);
}
.cv-preset-slider__preview-row[data-v-a739c6a9] {
  flex: 1;
  background: var(--preview-row-bg, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.cv-preset-slider__preview-row[data-v-a739c6a9]:last-child {
  border-bottom: none;
}
.cv-preset-slider__label[data-v-a739c6a9] {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--edit-layout-text-secondary, #64748B);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.cv-preset-slider__preset:hover .cv-preset-slider__label[data-v-a739c6a9] {
  color: var(--edit-layout-text-secondary, #475569);
}
.cv-preset-slider__preset--active .cv-preset-slider__label[data-v-a739c6a9] {
  color: var(--edit-layout-text, #334155);
  font-weight: 700;
}
.cv-preset-slider__nav[data-v-a739c6a9] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--edit-layout-border, rgba(100, 116, 139, 0.25));
  border-radius: 50%;
  background: var(--edit-layout-button-bg, rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(10px);
  color: var(--edit-layout-text-secondary, #475569);
  cursor: pointer;
  z-index: 10;
  /* Single box-shadow */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cv-preset-slider__nav[data-v-a739c6a9]:hover {
  background: var(--edit-layout-card-active-bg, rgba(248, 250, 252, 1));
  border-color: var(--edit-layout-text-secondary, #64748B);
  color: var(--edit-layout-text, #334155);
  transform: translateY(-50%) scale(1.1);
  /* Single box-shadow on hover */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.cv-preset-slider__nav--left[data-v-a739c6a9] {
  left: 0.5rem;
}
.cv-preset-slider__nav--right[data-v-a739c6a9] {
  right: 0.5rem;
}
/* ============================================
   LAYOUT STYLES ONLY
   No AG Grid styling - use Theme API instead
   ============================================ */

.cv-data-table {
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* Default: adapt to content */
  width: 100%;
  height: 100%;
}

.cv-data-table__error,
.cv-data-table__loading {
  padding: 2rem;
  text-align: center;
}

.cv-data-table__error-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cv-data-table__error-message {
  color: var(--cv-ui-color-danger, #ef4444);
}

.cv-data-table__error-retry {
  padding: 0.5rem 1rem;
  background-color: var(--cv-ui-color-primary, #3b82f6);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cv-data-table__container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  /* Default: adapt to content */
  max-width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide grid content during initialization to prevent flash */
.cv-data-table__container:has(.cv-data-table__loading-overlay--initializing) .cv-data-table__grid-wrapper,
.cv-data-table__container:has(.cv-data-table__loading-overlay--initializing) .cv-data-table__edit-layout {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cv-data-table__container:has(.cv-data-table__loading-overlay--initializing) .cv-data-table__toolbar {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Fullscreen Modal */
.cv-data-table__fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.cv-data-table__fullscreen-modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--ag-background-color, #ffffff);
  position: relative;
  overflow: hidden;
}

.cv-data-table__fullscreen-grid-wrapper {
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

/* Fullscreen Modal Transitions */
.fullscreen-modal-enter-active {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-modal-leave-active {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-modal-enter-from {
  opacity: 0;
}

.fullscreen-modal-enter-to {
  opacity: 1;
}

.fullscreen-modal-leave-from {
  opacity: 1;
}

.fullscreen-modal-leave-to {
  opacity: 0;
}

@keyframes fullscreen-enter {
  from {
    opacity: 0.95;
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes fullscreen-exit {
  from {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  }
  to {
    opacity: 0.95;
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.cv-data-table__container--fullscreen .cv-data-table__edit-layout {
  flex: 1;
  height: 100vh; /* Full height since top actions are hidden */
  min-height: 0;
  border-radius: 0;
}

/* Hide ThemeBuilder in fullscreen mode (optional - can be enabled if needed) */
.cv-data-table__container--fullscreen .cv-data-table__edit-layout__theme-builder {
  display: none;
}

/* Fullscreen Exit Notification */
.cv-data-table__fullscreen-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  pointer-events: none;
}

.cv-data-table__fullscreen-notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  /* Single box-shadow to avoid accumulation */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

.cv-data-table__fullscreen-notification-icon {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  flex-shrink: 0;
}

.cv-data-table__fullscreen-notification-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cv-data-table__fullscreen-notification-text kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a78bfa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 24px;
}

/* Notification transitions */
.fullscreen-notification-enter-active {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-notification-leave-active {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-notification-enter-from {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px) scale(0.9);
}

.fullscreen-notification-enter-to {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.fullscreen-notification-leave-from {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.fullscreen-notification-leave-to {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px) scale(0.9);
}

/* Mobile: Adjust notification */
@media (max-width: 768px) {
  .cv-data-table__fullscreen-notification {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
  }

  .cv-data-table__fullscreen-notification-content {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .cv-data-table__fullscreen-notification-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .fullscreen-notification-enter-from,
  .fullscreen-notification-leave-to {
    transform: translateY(-20px) scale(0.9);
  }

  .fullscreen-notification-enter-to,
  .fullscreen-notification-leave-from {
    transform: translateY(0) scale(1);
  }
}

/* Mobile Exit Button (visible in fullscreen on mobile) */
.cv-data-table__fullscreen-exit-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent-color, #3b82f6);
  border: 1px solid var(--accent-color, #3b82f6);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  /* Single box-shadow to avoid accumulation */
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-data-table__fullscreen-exit-btn:hover {
  background: var(--accent-color, #2563eb);
  border-color: var(--accent-color, #2563eb);
  transform: translateX(-50%) translateY(-2px);
  /* Single box-shadow on hover */
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.6);
}

.cv-data-table__fullscreen-exit-btn:active {
  transform: translateX(-50%) translateY(0);
}

.cv-data-table__fullscreen-exit-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Desktop: Hide exit button (use Escape key instead) */
@media (min-width: 769px) {
  .cv-data-table__fullscreen-exit-btn {
    display: none;
  }
}

/* Exit button transitions */
.fullscreen-exit-button-enter-active {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-exit-button-leave-active {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-exit-button-enter-from {
  opacity: 0;
  transform: translateX(-50%) translateY(20px) scale(0.9);
}

.fullscreen-exit-button-enter-to {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.fullscreen-exit-button-leave-from {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.fullscreen-exit-button-leave-to {
  opacity: 0;
  transform: translateX(-50%) translateY(20px) scale(0.9);
}

/* Edit Layout - replaced content-wrapper */
.cv-data-table__edit-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  /* border-radius is defined in DataTableEditLayout.vue to avoid conflicts */
}

.cv-data-table__edit-layout__content {
  display: flex;
  flex-direction: row;
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

/* Toolbar: quick filter (left) + top actions (right) on one row */
.cv-data-table__toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  min-height: 48px;
  position: relative;
  z-index: 10;
  width: 100%;
  flex-shrink: 0;
}

.cv-data-table__toolbar .cv-data-table__quick-filter {
  flex: 1;
  min-width: 0;
  padding: 0;
  justify-content: center;
}

.cv-data-table__toolbar .cv-data-table__top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  min-height: 0;
  position: relative;
  z-index: 10;
  width: auto;
  flex-shrink: 0;
  margin-left: auto; /* Push to right when quick filter is hidden */
}

.cv-data-table__grid-features-container {
  position: relative;
}

/* Toolbar actions: discreet ghost style */
.cv-data-table__grid-features-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ag-border-color, #cbd5e1);
  border-radius: 8px;
  background: transparent;
  color: var(--ag-secondary-foreground-color, #475569);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__grid-features-btn::before {
  display: none;
}

.cv-data-table__grid-features-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.cv-data-table__grid-features-btn:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.08);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
  transform: scale(1.02);
}

.cv-data-table__grid-features-btn:hover .cv-data-table__grid-features-icon {
  transform: rotate(12deg);
}

.cv-data-table__grid-features-btn--active {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.12);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
}

.cv-data-table__edit-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ag-border-color, #cbd5e1);
  border-radius: 8px;
  background: transparent;
  color: var(--ag-secondary-foreground-color, #475569);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__edit-toggle::before {
  display: none;
}

.cv-data-table__edit-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.cv-data-table__edit-toggle:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.08);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
  transform: scale(1.02);
}

.cv-data-table__edit-toggle:hover .cv-data-table__edit-toggle-icon {
  transform: scale(1.05);
}

.cv-data-table__edit-toggle--active {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.12);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
}

.cv-data-table__edit-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cv-data-table__edit-toggle:disabled:hover {
  transform: none;
  background: transparent;
  border-color: var(--ag-border-color, #cbd5e1);
  color: var(--ag-secondary-foreground-color, #475569);
}

/* Add Button – same ghost style, slightly emphasised border for primary action */
.cv-data-table__add-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--accent-color, #3b82f6);
  border-radius: 8px;
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.06);
  color: var(--accent-color, #3b82f6);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__add-btn::before {
  display: none;
}

.cv-data-table__add-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
  color: inherit;
}

.cv-data-table__add-btn:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.12);
  transform: scale(1.02);
}

.cv-data-table__add-btn:hover .cv-data-table__add-btn-icon {
  transform: scale(1.08);
}

.cv-data-table__add-btn:active {
  transform: scale(0.98);
}

.cv-data-table__add-btn:active .cv-data-table__add-btn-icon {
  transform: scale(1);
}

.cv-data-table__grid-wrapper {
  position: relative;
  flex: 1;
  min-height: 0;
  min-width: 0; /* Important for flex items to shrink properly */
  max-width: 100%; /* Prevent overflow */
  display: flex;
  flex-direction: column; /* Column layout: PresetSlider on top, table below */
  overflow: visible; /* Allow scroll to work properly */
  transition: width 0.3s ease;
}

/* Hide grid during loading */
.cv-data-table__grid-wrapper--loading {
  opacity: 0;
  pointer-events: none;
}

/* Show grid with animation after loading */
.cv-data-table__grid-wrapper:not(.cv-data-table__grid-wrapper--loading) {
  animation: cv-table-fade-in 0.5s ease-out;
}

@keyframes cv-table-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Edit mode: Limit table width to 1200px like PresetSlider (desktop only) */
@media (min-width: 1025px) {
  .cv-data-table__grid-wrapper--edit-mode {
    max-width: 1200px;
  }
}

.cv-data-table__grid-inner {
  min-height: 0;
  min-width: 0; /* Important for flex items to shrink properly */
  display: flex;
  flex-direction: column;
  overflow: visible; /* Allow content to be visible for scroll */
  /* Take available space in grid-wrapper */
  flex: 1;
  width: 100%;
  /* BorderRadius is applied via inline style from gridBorderRadius computed */
}

/* Loading Overlay - transparent, no border, adapts to any background */
.cv-data-table__loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  background: transparent;
  border: none;
}

/* When in edit mode, overlay is less prominent */
.cv-data-table__loading-overlay--edit-mode {
  z-index: 100;
  background: transparent;
}

/* Loading backdrop - transparent, no border */
.cv-data-table__loading-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
  animation: cv-fade-in-backdrop 0.4s ease-out;
  overflow: hidden;
}

/* Animated gradient overlay - subtle, theme accent */
.cv-data-table__loading-backdrop-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.04) 0%,
    rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.02) 50%,
    transparent 100%
  );
  animation: cv-gradient-shift 8s ease-in-out infinite;
  opacity: 0.8;
}

/* Floating particles */
.cv-data-table__loading-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cv-data-table__loading-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.4);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.3);
  animation: cv-particle-float var(--particle-duration, 3s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
  opacity: 0;
}

@keyframes cv-particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translate(
      calc(var(--particle-x, 100px) * 1),
      calc(var(--particle-y, -150px) * 1)
    ) scale(1);
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translate(
      calc(var(--particle-x, 200px) * 1.2),
      calc(var(--particle-y, -250px) * 1.2)
    ) scale(0.5);
    opacity: 0;
  }
}

/* Generate random positions for particles */
.cv-data-table__loading-particle:nth-child(1) {
  --particle-x: 50px;
  --particle-y: -100px;
  left: 10%;
  top: 80%;
}

.cv-data-table__loading-particle:nth-child(2) {
  --particle-x: -80px;
  --particle-y: -120px;
  left: 20%;
  top: 70%;
}

.cv-data-table__loading-particle:nth-child(3) {
  --particle-x: 120px;
  --particle-y: -80px;
  left: 30%;
  top: 60%;
}

.cv-data-table__loading-particle:nth-child(4) {
  --particle-x: -60px;
  --particle-y: -150px;
  left: 40%;
  top: 50%;
}

.cv-data-table__loading-particle:nth-child(5) {
  --particle-x: 90px;
  --particle-y: -100px;
  left: 50%;
  top: 40%;
}

.cv-data-table__loading-particle:nth-child(6) {
  --particle-x: -100px;
  --particle-y: -130px;
  left: 60%;
  top: 30%;
}

.cv-data-table__loading-particle:nth-child(7) {
  --particle-x: 70px;
  --particle-y: -90px;
  left: 70%;
  top: 20%;
}

.cv-data-table__loading-particle:nth-child(8) {
  --particle-x: -90px;
  --particle-y: -140px;
  left: 80%;
  top: 10%;
}

.cv-data-table__loading-particle:nth-child(9) {
  --particle-x: 110px;
  --particle-y: -110px;
  left: 15%;
  top: 90%;
}

.cv-data-table__loading-particle:nth-child(10) {
  --particle-x: -70px;
  --particle-y: -120px;
  left: 25%;
  top: 85%;
}

.cv-data-table__loading-particle:nth-child(11) {
  --particle-x: 85px;
  --particle-y: -95px;
  left: 75%;
  top: 15%;
}

.cv-data-table__loading-particle:nth-child(12) {
  --particle-x: -85px;
  --particle-y: -125px;
  left: 85%;
  top: 25%;
}

@keyframes cv-gradient-shift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.8;
  }
}

/* Loading Overlay for initialization - covers entire container including top actions */
.cv-data-table__loading-overlay--initializing {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  pointer-events: none;
}

.cv-data-table__loading-overlay--initializing .cv-data-table__loading-backdrop {
  background: transparent;
}

@keyframes cv-fade-in-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cv-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cv-data-table__loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  position: relative;
  z-index: 1;
}

.cv-data-table__loader {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 30px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.2));
}

/* Outer ring - large, slow rotation */
.cv-data-table__loader-outer {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top: 3px solid var(--cv-loader-accent-color, #3b82f6);
  border-right: 3px solid rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.6);
  border-radius: 50%;
  animation: cv-spin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  box-shadow: 
    0 0 30px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.2),
    inset 0 0 30px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.1);
}

/* Middle ring - medium speed, reverse */
.cv-data-table__loader-middle {
  position: absolute;
  inset: 20px;
  border: 2.5px solid transparent;
  border-bottom: 2.5px solid rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.7);
  border-left: 2.5px solid rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.5);
  border-radius: 50%;
  animation: cv-spin-reverse 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  filter: blur(0.5px);
  opacity: 0.9;
}

/* Inner ring - fast rotation */
.cv-data-table__loader-inner {
  position: absolute;
  inset: 40px;
  border: 2px solid transparent;
  border-top: 2px solid rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.6);
  border-right: 2px solid rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.4);
  border-radius: 50%;
  animation: cv-spin 1s linear infinite;
  opacity: 0.8;
}

/* Center glow */
.cv-data-table__loader-center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: radial-gradient(
    circle,
    var(--cv-loader-accent-color, #3b82f6) 0%,
    rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.6) 50%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.6),
    0 0 40px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.3),
    inset 0 0 10px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.4);
  animation: cv-pulse-center 2s ease-in-out infinite;
}

/* Orbiting dots */
.cv-data-table__loader-orbit {
  position: absolute;
  inset: 0;
  animation: cv-spin 3s linear infinite;
}

.cv-data-table__loader-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cv-loader-accent-color, #3b82f6);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.8);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cv-orbit-pulse 1.5s ease-in-out infinite;
}

.cv-data-table__loader-dot--1 {
  animation-delay: 0s;
}

.cv-data-table__loader-dot--2 {
  animation-delay: 0.5s;
  transform: translate(-50%, -50%) rotate(120deg) translateY(-60px);
}

.cv-data-table__loader-dot--3 {
  animation-delay: 1s;
  transform: translate(-50%, -50%) rotate(240deg) translateY(-60px);
}

@keyframes cv-orbit-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes cv-pulse-center {
  0%, 100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes cv-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cv-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.cv-data-table__loading-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cv-data-table__loading-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cv-loader-accent-color, #3b82f6);
  letter-spacing: 0.5px;
  text-shadow: 
    0 2px 8px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: cv-text-glow 2s ease-in-out infinite;
}

/* Animated dots */
.cv-data-table__loading-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.cv-data-table__loading-dot {
  width: 6px;
  height: 6px;
  background: var(--cv-loader-accent-color, #3b82f6);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.6);
  animation: cv-dot-bounce 1.4s ease-in-out infinite;
  opacity: 0.7;
}

.cv-data-table__loading-dot:nth-child(1) {
  animation-delay: 0s;
}

.cv-data-table__loading-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.cv-data-table__loading-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cv-dot-bounce {
  0%, 80%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  40% {
    transform: translateY(-8px) scale(1.2);
    opacity: 1;
  }
}

@keyframes cv-text-glow {
  0%, 100% {
    opacity: 0.9;
    text-shadow: 
      0 2px 8px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.3),
      0 1px 3px rgba(0, 0, 0, 0.1);
  }
  50% {
    opacity: 1;
    text-shadow: 
      0 2px 12px rgba(var(--cv-loader-accent-color-rgb, 59, 130, 246), 0.5),
      0 1px 3px rgba(0, 0, 0, 0.1);
  }
}

@keyframes cv-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

/* Layout fixes for AG Grid structure - necessary for flex layout */
.cv-data-table__grid-inner :deep(.ag-root-wrapper) {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Allow scroll to work properly */
}

/* When using autoHeight, AG Grid should adapt to content */
.cv-data-table__grid-inner[style*="height: auto"] :deep(.ag-root-wrapper) {
  height: auto;
  flex: 0 1 auto;
}

.cv-data-table__grid-inner :deep(.ag-root) {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Allow scroll to work properly */
}

/* When using autoHeight, AG Grid root should adapt to content */
.cv-data-table__grid-inner[style*="height: auto"] :deep(.ag-root) {
  height: auto;
  flex: 0 1 auto;
}

.cv-data-table__grid-inner :deep(.ag-body-viewport) {
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-x: hidden; /* Hide horizontal scrollbar - use fake scrollbar instead */
  overflow-y: auto; /* Keep vertical scrollbar */
}

/* When using autoHeight, body viewport should adapt */
.cv-data-table__grid-inner[style*="height: auto"] :deep(.ag-body-viewport) {
  flex: 0 1 auto;
  overflow: visible;
}

/* Theme transition animations - subtle and performant */
.cv-data-table__grid-wrapper :deep(.ag-root-wrapper) {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Apply border radius to AG Grid root wrapper to match grid-inner */
.cv-data-table__grid-inner :deep(.ag-root-wrapper) {
  border-radius: inherit;
  overflow: hidden; /* Ensure border-radius is visible */
}

/* Apply border radius to AG Grid root element */
.cv-data-table__grid-inner :deep(.ag-root) {
  border-radius: inherit;
  overflow: hidden; /* Ensure border-radius is visible */
}

/* Apply border radius to header and body viewport */
.cv-data-table__grid-inner :deep(.ag-header) {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.cv-data-table__grid-inner :deep(.ag-body-viewport) {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

/* ============================================
   CUSTOM SCROLLBARS FOR AG GRID
   ============================================ */
/* All scrollbar styles are handled globally in datatable-tool-panels.css */
/* This ensures consistent styling across all AG Grid elements without duplication */

/* Top Actions Bar */
.cv-data-table__top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  min-height: 48px;
  position: relative;
  z-index: 10;
  width: 100%;
  flex-shrink: 0;
  justify-content: flex-end; /* Group buttons together on the right */
}

/* Hide top actions in fullscreen mode */
.cv-data-table__container--fullscreen .cv-data-table__top-actions {
  display: none;
}

.cv-data-table__grid-features-container {
  position: relative;
}

/* Toolbar actions: discreet ghost style */
.cv-data-table__grid-features-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ag-border-color, #cbd5e1);
  border-radius: 8px;
  background: transparent;
  color: var(--ag-secondary-foreground-color, #475569);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__grid-features-btn::before {
  display: none;
}

.cv-data-table__grid-features-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.cv-data-table__grid-features-btn:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.08);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
  transform: scale(1.02);
}

.cv-data-table__grid-features-btn:hover .cv-data-table__grid-features-icon {
  transform: rotate(12deg);
}

.cv-data-table__grid-features-btn--active {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.12);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
}

.cv-data-table__edit-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ag-border-color, #cbd5e1);
  border-radius: 8px;
  background: transparent;
  color: var(--ag-secondary-foreground-color, #475569);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__edit-toggle::before {
  display: none;
}

.cv-data-table__edit-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.cv-data-table__edit-toggle:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.08);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
  transform: scale(1.02);
}

.cv-data-table__edit-toggle:hover .cv-data-table__edit-toggle-icon {
  transform: scale(1.05);
}

.cv-data-table__edit-toggle--active {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.12);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
}

.cv-data-table__edit-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cv-data-table__edit-toggle:disabled:hover {
  transform: none;
  background: transparent;
  border-color: var(--ag-border-color, #cbd5e1);
  color: var(--ag-secondary-foreground-color, #475569);
}

/* Fullscreen Toggle Button */
/* Fullscreen Toggle Button – ghost style */
.cv-data-table__fullscreen-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ag-border-color, #cbd5e1);
  border-radius: 8px;
  background: transparent;
  color: var(--ag-secondary-foreground-color, #475569);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__fullscreen-toggle::before {
  display: none;
}

.cv-data-table__fullscreen-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.cv-data-table__fullscreen-toggle:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.08);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
  transform: scale(1.02);
}

.cv-data-table__fullscreen-toggle:hover .cv-data-table__fullscreen-toggle-icon {
  transform: scale(1.05);
}

.cv-data-table__fullscreen-toggle--active {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.12);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
}

.cv-data-table__fullscreen-toggle--active .cv-data-table__fullscreen-toggle-icon {
  transform: rotate(180deg);
}

.cv-data-table__fullscreen-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cv-data-table__fullscreen-toggle:disabled:hover {
  transform: none;
  background: transparent;
  border-color: var(--ag-border-color, #cbd5e1);
  color: var(--ag-secondary-foreground-color, #475569);
}

.cv-data-table__fullscreen-toggle:disabled:hover::before {
  opacity: 0;
}

/* Dark Mode Toggle Button – ghost style */
.cv-data-table__dark-mode-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--ag-border-color, #cbd5e1);
  border-radius: 8px;
  background: transparent;
  color: var(--ag-secondary-foreground-color, #475569);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.cv-data-table__dark-mode-toggle::before {
  display: none;
}

.cv-data-table__dark-mode-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cv-data-table__dark-mode-toggle:hover {
  background: rgba(var(--accent-color-rgb, 59, 130, 246), 0.08);
  border-color: var(--accent-color, #3b82f6);
  color: var(--accent-color, #3b82f6);
  transform: scale(1.02);
}

.cv-data-table__dark-mode-toggle:hover .cv-data-table__dark-mode-toggle-icon {
  transform: rotate(15deg) scale(1.05);
}

/* Loading Overlay Transitions */
.edit-mode-loading-enter-active {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.edit-mode-loading-leave-active {
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.edit-mode-loading-enter-from {
  opacity: 0;
  transform: scale(0.95);
}

.edit-mode-loading-leave-to {
  opacity: 0;
  transform: scale(1.02);
}

.edit-mode-loading-enter-to,
.edit-mode-loading-leave-from {
  opacity: 1;
  transform: scale(1);
}

/* Theme Builder transitions */
.theme-builder-slide-enter-active {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.theme-builder-slide-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-builder-slide-enter-from {
  transform: translateX(-100%);
  opacity: 0;
}

.theme-builder-slide-enter-to {
  transform: translateX(0);
  opacity: 1;
}

.theme-builder-slide-leave-from {
  transform: translateX(0);
  opacity: 1;
}

.theme-builder-slide-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}

/* Preset Slider transitions */
.preset-slider-enter-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.preset-slider-leave-active {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.preset-slider-enter-from {
  transform: translateY(-100%);
  opacity: 0;
}

.preset-slider-enter-to {
  transform: translateY(0);
  opacity: 1;
}

.preset-slider-leave-from {
  transform: translateY(0);
  opacity: 1;
}

.preset-slider-leave-to {
  transform: translateY(-100%);
  opacity: 0;
}

/* Advanced Filter Builder Styles - Target AG Grid elements */
/* Note: Using standard CSS selectors (not :deep()) since this is an external CSS file */
.cv-data-table [class*="advanced-filter"][class*="button"],
.cv-data-table [class*="ag-advanced-filter-button-bar"],
.cv-data-table .ag-advanced-filter-button-bar,
.cv-data-table .ag-button.ag-standard-button.ag-filter-apply-panel-button.ag-filter-apply-panel-apply-button {
  margin: 0 15px !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and below: ThemeBuilder already on top, just adjust sizing */
@media (max-width: 1024px) {
  .cv-data-table__edit-layout__theme-builder {
    width: 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 2px solid rgba(100, 116, 139, 0.15);
    max-height: 50vh;
    overflow-y: auto;
  }

  .cv-data-table__grid-wrapper {
    width: 100%;
  }

  /* Hide PresetSlider on tablet - use presets in ThemeBuilder */
  .cv-data-table__edit-layout__preset-slider {
    display: none !important;
  }

  /* Show presets section in ThemeBuilder on tablet */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__accordion--presets {
    display: block !important;
  }
}

/* Mobile: Hide edit mode button, make table full width */
@media (max-width: 768px) {
  .cv-data-table {
    width: 100%;
  }

  .cv-data-table__container {
    width: 100%;
  }

  .cv-data-table__edit-layout__content {
    flex-direction: column;
  }

  /* Theme Builder as full-screen modal on mobile */
  .cv-data-table__edit-layout__theme-builder {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2000 !important;
    border-radius: 0 !important;
    border: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    box-shadow: none !important;
  }

  /* Show close button on mobile */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__close-btn {
    display: flex !important;
  }

  /* Add backdrop/overlay for mobile theme builder */
  .cv-data-table__container--edit-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    pointer-events: none;
  }

  /* Hide PresetSlider on mobile - presets are now in ThemeBuilder accordion */
  .cv-data-table__edit-layout__preset-slider {
    display: none !important;
  }

  /* Show presets section on mobile, hide on desktop (desktop uses PresetSlider) */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__accordion--presets {
    display: block !important;
  }

  /* Ensure theme builder content is scrollable on mobile */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__content {
    padding-bottom: 2rem;
  }

  /* Make accordion sections more touch-friendly on mobile */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__accordion-trigger {
    min-height: 48px;
    padding: 1rem;
  }

  /* Optimize form inputs for mobile */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__input,
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Optimize presets grid for mobile - 2 columns */
  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__presets-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__preset-card {
    padding: 0.75rem !important;
    min-height: 120px !important;
  }

  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__preset-preview {
    height: 50px !important;
  }

  .cv-data-table__edit-layout__theme-builder .cv-theme-builder__preset-label {
    font-size: 0.75rem !important;
    text-align: center !important;
  }

  /* Keep edit mode toggle on mobile but make it more accessible */
  .cv-data-table__edit-toggle {
    /* Keep visible but smaller on mobile */
    width: 36px;
    height: 36px;
  }

  /* Adjust toolbar for mobile */
  .cv-data-table__toolbar {
    padding: 0.5rem 1rem;
    gap: 0.75rem;
  }

  .cv-data-table__toolbar .cv-data-table__top-actions {
    gap: 0.25rem;
  }

  .cv-data-table__grid-features-btn {
    width: 36px;
    height: 36px;
  }

  /* Ensure table takes full width on mobile */
  .cv-data-table__grid-wrapper {
    width: 100%;
  }

  .cv-data-table__grid-inner {
    width: 100%;
  }

  /* AG Grid horizontal scroll on mobile */
  .cv-data-table__grid-inner :deep(.ag-body-viewport) {
    overflow-x: hidden; /* Hide horizontal scrollbar - use fake scrollbar instead */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  /* Optimize AG Grid pagination panel for mobile - Flex layout with controlled widths */
  .cv-data-table .ag-paging-panel,
  .cv-data-table__grid-inner .ag-paging-panel,
  .cv-data-table .ag-root-wrapper .ag-paging-panel {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.75rem !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  /* Page size selector - Reduced width but still usable */
  .cv-data-table .ag-paging-panel .ag-paging-page-size,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-page-size,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-page-size {
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
    min-width: 80px !important;
    max-width: 120px !important;
    flex-shrink: 0 !important;
    gap: 0.25rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cv-data-table .ag-paging-panel .ag-paging-page-size label,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-page-size label,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-page-size label {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }

  .cv-data-table .ag-paging-panel .ag-paging-page-size select,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-page-size select,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-page-size select {
    width: 100% !important;
    min-width: 80px !important;
    max-width: 120px !important;
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* Pagination info - Respectable width, centered */
  .cv-data-table .ag-paging-panel .ag-paging-row-summary-panel,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-row-summary-panel,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-row-summary-panel {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    min-width: 120px !important;
    text-align: center !important;
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 0.5rem !important;
    gap: 0.25rem !important;
  }

  /* Navigation buttons - Flex container, centered buttons */
  .cv-data-table .ag-paging-panel .ag-paging-button-panel,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-button-panel,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-button-panel {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .cv-data-table .ag-paging-panel .ag-paging-button-panel button,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-button-panel button,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-button-panel button {
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  /* Page number display */
  .cv-data-table .ag-paging-panel .ag-paging-button-panel .ag-paging-description,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-button-panel .ag-paging-description,
  .cv-data-table .ag-root-wrapper .ag-paging-panel .ag-paging-button-panel .ag-paging-description {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    padding: 0 0.5rem !important;
    margin: 0 !important;
  }

  /* Hide any misplaced page size selectors in table body */
  .cv-data-table .ag-body-viewport .ag-paging-page-size,
  .cv-data-table__grid-inner .ag-body-viewport .ag-paging-page-size,
  .cv-data-table .ag-body-viewport .ag-paging-panel {
    display: none !important;
  }
}

/* Small mobile: Further optimizations */
@media (max-width: 480px) {
  .cv-data-table__toolbar {
    padding: 0.375rem 0.75rem;
    min-height: 40px;
  }

  .cv-data-table__grid-features-btn {
    padding: 0.25rem;
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .cv-data-table__grid-features-icon {
    width: 18px;
    height: 18px;
  }

  /* Even more compact pagination on small mobile */
  .cv-data-table .ag-paging-panel,
  .cv-data-table__grid-inner .ag-paging-panel,
  .cv-data-table .ag-root-wrapper .ag-paging-panel {
    padding: 0.5rem 0.375rem !important;
    gap: 0.5rem !important;
    font-size: 0.6875rem !important; /* Reduced from 0.8125rem (11px) */
  }

  .cv-data-table .ag-paging-panel .ag-paging-button-panel button,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-button-panel button {
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0.375rem !important;
    font-size: 0.6875rem !important; /* Reduced from 0.8125rem */
  }

  .cv-data-table .ag-paging-panel .ag-paging-row-summary-panel,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-row-summary-panel {
    font-size: 0.6875rem !important; /* Reduced from 0.8125rem */
  }

  /* Simplify page size selector text on very small screens */
  .cv-data-table .ag-paging-panel .ag-paging-page-size label,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-page-size label {
    font-size: 0.6875rem !important; /* Reduced from 0.8125rem */
  }

  .cv-data-table .ag-paging-panel .ag-paging-page-size select,
  .cv-data-table__grid-inner .ag-paging-panel .ag-paging-page-size select {
    font-size: 0.6875rem !important; /* Reduced from 0.8125rem */
    padding: 0.375rem !important;
  }
}

.cv-dt-playground[data-v-77f43e94] {
  padding: 1rem;
}

.cv-dt-custom-preset-test[data-v-f274c88a] {
  padding: 1rem;
}
.cv-dt-custom-preset-test__info[data-v-f274c88a] {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #00a5df;
}
.cv-dt-custom-preset-test__info h3[data-v-f274c88a] {
  margin: 0 0 0.5rem 0;
  color: #1e293b;
  font-size: 1.125rem;
}
.cv-dt-custom-preset-test__info p[data-v-f274c88a] {
  margin: 0 0 0.75rem 0;
  color: #64748b;
  font-size: 0.875rem;
}
.cv-dt-custom-preset-test__info ul[data-v-f274c88a] {
  margin: 0;
  padding-left: 1.5rem;
  color: #475569;
  font-size: 0.875rem;
}
.cv-dt-custom-preset-test__info li[data-v-f274c88a] {
  margin: 0.25rem 0;
}
.cv-dt-custom-preset-test__info code[data-v-f274c88a] {
  background: #e2e8f0;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-family: 'Courier New', monospace;
  color: #1e293b;
}

.cv-form-renderer-field[data-v-a1775096] {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem;
  margin: 0.25rem 0;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}
.cv-form-renderer-field--dragging[data-v-a1775096] {
  opacity: 0.5;
  background-color: #f0f0f0;
}
.cv-form-renderer-field--drag-over[data-v-a1775096] {
  background-color: #e6f7ff;
  border: 2px dashed #18a058;
  padding: calc(0.5rem - 2px);
}
.cv-form-renderer-field-drag-handle[data-v-a1775096] {
  cursor: move;
  color: #999;
  padding: 0.5rem 0.25rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-drag: element;
}
.cv-form-renderer-field-drag-handle[data-v-a1775096]:hover {
  color: #666;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.cv-form-renderer-field-drag-handle[data-v-a1775096]:active {
  cursor: grabbing;
  color: #333;
}
.cv-form-renderer-field-content[data-v-a1775096] {
  flex: 1;
  min-width: 0;
}
.cv-form-renderer-field__label[data-v-a1775096] {
  margin-bottom: var(--cv-ui-spacing-xs, 4px);
}
.cv-form-renderer-field__label label[data-v-a1775096] {
  font-size: var(--cv-ui-font-size-sm, 14px);
  font-weight: var(--cv-ui-font-weight-medium, 500);
  color: var(--cv-ui-text-primary);
}
.cv-form-renderer-field__required[data-v-a1775096] {
  color: var(--cv-ui-color-danger);
}

.cv-form-renderer[data-v-3ad12d04] { width: 100%;
}
.cv-form-renderer-section[data-v-3ad12d04] { margin-bottom: 1.5rem;
}
.cv-form-renderer-section-header[data-v-3ad12d04] {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; padding: 0.75rem 0; border-bottom: 1px solid #e5e7eb; user-select: none;
}
.cv-form-renderer-section-title[data-v-3ad12d04] {
  font-size: 1.125rem; font-weight: 600; margin: 0; padding: 0.75rem 0; border-bottom: 1px solid #e5e7eb;
}
.cv-form-renderer-section-chevron[data-v-3ad12d04] { transition: transform 0.2s; font-size: 0.75rem; color: #6b7280;
}
.cv-form-renderer-section-chevron.open[data-v-3ad12d04] { transform: rotate(180deg);
}
.cv-form-renderer-section-content[data-v-3ad12d04] { padding-top: 1rem;
}
.cv-form-renderer-grid[data-v-3ad12d04] { display: grid; gap: 1rem;
}
.cv-form-renderer-loading[data-v-3ad12d04] { position: relative; min-height: 200px;
}
.cv-form-renderer-loading-spinner[data-v-3ad12d04] {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  padding: 1rem; background: rgba(255, 255, 255, 0.9); border-radius: 4px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cv-form-renderer-error[data-v-3ad12d04] {
  padding: 0.75rem 1rem; margin-bottom: 1rem; background-color: #fee; border: 1px solid #fcc; border-radius: 4px; color: #c33;
}

.cv-form-builder-palette[data-v-cb03c79c] { display: flex; flex-direction: column; height: 100%; background: var(--cv-fb-bg-panel); border-right: 1px solid var(--cv-fb-border); box-shadow: 2px 0 8px var(--cv-fb-shadow-sm);
}
.cv-form-builder-palette__header[data-v-cb03c79c] { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--cv-fb-bg-input); border-bottom: 1px solid var(--cv-fb-border);
}
.cv-form-builder-palette__title[data-v-cb03c79c] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; color: var(--cv-fb-text-primary);
}
.cv-form-builder-palette__count[data-v-cb03c79c] { font-size: 0.6875rem; font-weight: 600; color: var(--cv-fb-text-tertiary); background: var(--cv-fb-bg-active); padding: 0.2rem 0.5rem; border-radius: 9999px;
}
.cv-form-builder-palette__search[data-v-cb03c79c] { padding: 0.75rem 1rem; border-bottom: 1px solid var(--cv-fb-border);
}
.cv-form-builder-palette__search-input[data-v-cb03c79c] { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--cv-fb-border); border-radius: 0.5rem; font-size: 0.8125rem; background: var(--cv-fb-bg-input); color: var(--cv-fb-text-primary); transition: border-color 0.15s, box-shadow 0.15s;
}
.cv-form-builder-palette__search-input[data-v-cb03c79c]::placeholder { color: var(--cv-fb-text-tertiary);
}
.cv-form-builder-palette__search-input[data-v-cb03c79c]:focus { outline: none; border-color: var(--cv-fb-accent); background: var(--cv-fb-bg-panel); box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder-palette__list[data-v-cb03c79c] { flex: 1; overflow-y: auto; padding: 0.75rem;
}
.cv-form-builder-palette__item[data-v-cb03c79c] { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; margin-bottom: 0.5rem; background: var(--cv-fb-bg-panel); border: 1px solid var(--cv-fb-border); border-radius: 0.5rem; cursor: grab; transition: all 0.2s; box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder-palette__item[data-v-cb03c79c]:hover { background: var(--cv-fb-bg-hover); border-color: var(--cv-fb-border-hover); box-shadow: var(--cv-fb-shadow-md);
}
.cv-form-builder-palette__item[data-v-cb03c79c]:active { cursor: grabbing;
}
.cv-form-builder-palette__item--dragging[data-v-cb03c79c] { opacity: 0.6; transform: scale(0.98); box-shadow: var(--cv-fb-shadow-lg);
}
.cv-form-builder-palette__item--used[data-v-cb03c79c] { opacity: 0.85; background: var(--cv-fb-accent-light); border-color: var(--cv-fb-accent);
}
.cv-form-builder-palette__item-icon[data-v-cb03c79c] { font-size: 1.25rem; flex-shrink: 0; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; background: var(--cv-fb-bg-active); border-radius: 0.375rem;
}
.cv-form-builder-palette__item-content[data-v-cb03c79c] { flex: 1; min-width: 0;
}
.cv-form-builder-palette__item-label[data-v-cb03c79c] { font-size: 0.875rem; font-weight: 600; color: var(--cv-fb-text-primary); margin-bottom: 0.2rem;
}
.cv-form-builder-palette__item-name[data-v-cb03c79c] { font-size: 0.6875rem; color: var(--cv-fb-text-secondary); font-family: ui-monospace, monospace; margin-bottom: 0.125rem;
}
.cv-form-builder-palette__item-type[data-v-cb03c79c] { font-size: 0.625rem; font-weight: 600; color: var(--cv-fb-text-tertiary); text-transform: uppercase; letter-spacing: 0.05em;
}
.cv-form-builder-palette__item-badge[data-v-cb03c79c] { flex-shrink: 0; width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center; background: var(--cv-fb-success); color: #fff; border-radius: 50%; font-size: 0.6875rem; font-weight: 700; box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder-palette__empty[data-v-cb03c79c] { padding: 2rem 1rem; text-align: center; color: var(--cv-fb-text-tertiary); font-size: 0.8125rem; font-weight: 500;
}

.cv-form-builder-canvas[data-v-070131bd] { display: flex; flex-direction: column; height: 100%; background: var(--cv-fb-bg-panel); flex: 1;
}
.cv-form-builder-canvas--preview[data-v-070131bd] { background: transparent;
}
.cv-form-builder-canvas__header[data-v-070131bd] { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--cv-fb-bg-input); border-bottom: 1px solid var(--cv-fb-border);
}
.cv-form-builder-canvas__title[data-v-070131bd] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; color: var(--cv-fb-text-primary);
}
.cv-form-builder-canvas__actions[data-v-070131bd] { display: flex; gap: 0.5rem;
}
.cv-form-builder-canvas__btn[data-v-070131bd] { padding: 0.5rem 1rem; border: 1px solid var(--cv-fb-border); border-radius: 0.5rem; font-size: 0.8125rem; font-weight: 600; cursor: pointer; background: var(--cv-fb-bg-panel); color: var(--cv-fb-text-secondary); transition: all 0.2s; box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder-canvas__btn[data-v-070131bd]:hover { background: var(--cv-fb-bg-hover); border-color: var(--cv-fb-border-hover); box-shadow: var(--cv-fb-shadow-md);
}
.cv-form-builder-canvas__btn--primary[data-v-070131bd] { background: var(--cv-fb-accent); color: #fff; border-color: var(--cv-fb-accent-hover); box-shadow: 0 2px 4px var(--cv-fb-accent-ring);
}
.cv-form-builder-canvas__btn--primary[data-v-070131bd]:hover { background: var(--cv-fb-accent-hover); box-shadow: 0 4px 8px var(--cv-fb-accent-ring);
}
.cv-form-builder-canvas__content[data-v-070131bd] { flex: 1; overflow-y: auto; padding: 1.25rem;
}
.cv-form-builder-canvas__content--edit[data-v-070131bd] { background: var(--cv-fb-bg-base); min-height: 100%;
}
.cv-form-builder-canvas__content--preview[data-v-070131bd] { background: transparent; min-height: 0;
}
.cv-form-builder-canvas__empty[data-v-070131bd] { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; text-align: center; padding: 2rem; background: var(--cv-fb-bg-panel); border: 2px dashed var(--cv-fb-border); border-radius: 1rem; color: var(--cv-fb-text-secondary);
}
.cv-form-builder-canvas__empty-icon[data-v-070131bd] { font-size: 3.5rem; margin-bottom: 1.25rem; opacity: 0.8;
}
.cv-form-builder-canvas__empty-text[data-v-070131bd] { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--cv-fb-text-primary);
}
.cv-form-builder-canvas__empty-hint[data-v-070131bd] { font-size: 0.875rem; color: var(--cv-fb-text-tertiary); font-weight: 500;
}
.cv-form-builder-canvas__section[data-v-070131bd] { margin-bottom: 1.5rem; background: var(--cv-fb-bg-panel); border: 1px solid var(--cv-fb-border); border-radius: 0.75rem; overflow: hidden; box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder-canvas__section-header[data-v-070131bd] { display: flex; align-items: center; padding: 0.875rem 1.25rem; background: var(--cv-fb-bg-input); border-bottom: 1px solid var(--cv-fb-border);
}
.cv-form-builder-canvas__section-title-input[data-v-070131bd] { flex: 1; padding: 0.5rem 0.75rem; border: 1px solid var(--cv-fb-border); border-radius: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--cv-fb-text-primary); background: var(--cv-fb-bg-panel); transition: border-color 0.15s, box-shadow 0.15s;
}
.cv-form-builder-canvas__section-title-input[data-v-070131bd]:focus { outline: none; border-color: var(--cv-fb-accent); box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder-canvas__section-remove[data-v-070131bd] { margin-left: 0.5rem; padding: 0.3rem 0.6rem; background: var(--cv-fb-danger); color: #fff; border: none; border-radius: 0.375rem; cursor: pointer; font-size: 1.125rem; line-height: 1; font-weight: 600; transition: box-shadow 0.2s;
}
.cv-form-builder-canvas__section-remove[data-v-070131bd]:hover { background: var(--cv-fb-danger-hover); box-shadow: var(--cv-fb-shadow-md);
}
.cv-form-builder-canvas__section-content[data-v-070131bd] { padding: 1.25rem;
}
.cv-form-builder-canvas__field[data-v-070131bd] { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; margin-bottom: 0.5rem; background: var(--cv-fb-bg-panel); border: 1px solid var(--cv-fb-border); border-radius: 0.5rem; cursor: pointer; transition: all 0.2s; box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder-canvas__field[data-v-070131bd]:hover { background: var(--cv-fb-bg-hover); border-color: var(--cv-fb-border-hover); box-shadow: var(--cv-fb-shadow-md);
}
.cv-form-builder-canvas__field--selected[data-v-070131bd] { background: var(--cv-fb-accent-light); border-color: var(--cv-fb-accent); box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder-canvas__field--dragging[data-v-070131bd] { opacity: 0.6; transform: scale(0.98);
}
.cv-form-builder-canvas__drop-indicator[data-v-070131bd] { height: 6px; min-height: 6px; margin: 4px 0; background: var(--cv-fb-accent); border-radius: 3px; flex-shrink: 0; box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder-canvas__field-handle[data-v-070131bd] { color: var(--cv-fb-text-tertiary); cursor: grab; font-size: 1rem; user-select: none;
}
.cv-form-builder-canvas__field-handle[data-v-070131bd]:active { cursor: grabbing;
}
.cv-form-builder-canvas__field-content[data-v-070131bd] { flex: 1; min-width: 0;
}
.cv-form-builder-canvas__field-label[data-v-070131bd] { font-size: 0.875rem; font-weight: 600; color: var(--cv-fb-text-primary); margin-bottom: 0.2rem;
}
.cv-form-builder-canvas__field-preview[data-v-070131bd] { font-size: 0.75rem; color: var(--cv-fb-text-secondary); font-style: italic;
}
.cv-form-builder-canvas__field-remove[data-v-070131bd] { padding: 0.25rem 0.5rem; background: var(--cv-fb-danger); color: #fff; border: none; border-radius: 0.375rem; cursor: pointer; font-size: 1rem; line-height: 1; font-weight: 600; transition: box-shadow 0.2s;
}
.cv-form-builder-canvas__field-remove[data-v-070131bd]:hover { background: var(--cv-fb-danger-hover); box-shadow: var(--cv-fb-shadow-md);
}
.cv-form-builder-canvas__section-dropzone[data-v-070131bd] { padding: 2rem; text-align: center; border: 2px dashed var(--cv-fb-border-hover); border-radius: 0.75rem; color: var(--cv-fb-text-secondary); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; background: var(--cv-fb-bg-input);
}
.cv-form-builder-canvas__section-dropzone--active[data-v-070131bd] { border-color: var(--cv-fb-accent); background: var(--cv-fb-accent-light); color: var(--cv-fb-accent-hover); box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}

.cv-form-builder-properties[data-v-1066c78a] { display: flex; flex-direction: column; height: 100%; background: var(--cv-fb-bg-panel); border-left: 1px solid var(--cv-fb-border); box-shadow: -2px 0 8px var(--cv-fb-shadow-sm);
}
.cv-form-builder-properties__header[data-v-1066c78a] { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--cv-fb-bg-input); border-bottom: 1px solid var(--cv-fb-border);
}
.cv-form-builder-properties__title[data-v-1066c78a] { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; color: var(--cv-fb-text-primary);
}
.cv-form-builder-properties__close[data-v-1066c78a] { padding: 0.25rem 0.5rem; background: var(--cv-fb-bg-active); border: none; border-radius: 0.375rem; cursor: pointer; font-size: 1.25rem; line-height: 1; color: var(--cv-fb-text-secondary); transition: all 0.2s;
}
.cv-form-builder-properties__close[data-v-1066c78a]:hover { background: var(--cv-fb-border-hover); color: var(--cv-fb-text-primary);
}
.cv-form-builder-properties__empty[data-v-1066c78a] { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 2rem; text-align: center; color: var(--cv-fb-text-tertiary); background: var(--cv-fb-bg-input); margin: 1rem; border-radius: 0.75rem; border: 2px dashed var(--cv-fb-border);
}
.cv-form-builder-properties__empty-icon[data-v-1066c78a] { font-size: 3rem; margin-bottom: 1rem; opacity: 0.7;
}
.cv-form-builder-properties__empty-text[data-v-1066c78a] { font-size: 0.875rem; font-weight: 600; color: var(--cv-fb-text-secondary);
}
.cv-form-builder-properties__content[data-v-1066c78a] { flex: 1; overflow-y: auto; padding: 1.25rem;
}
.cv-form-builder-properties__section[data-v-1066c78a] { margin-bottom: 1.5rem;
}
.cv-form-builder-properties__section-title[data-v-1066c78a] { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; color: var(--cv-fb-text-secondary); margin: 0 0 0.75rem 0; letter-spacing: 0.08em;
}
.cv-form-builder-properties__field[data-v-1066c78a] { margin-bottom: 0.75rem;
}
.cv-form-builder-properties__field-group[data-v-1066c78a] { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.cv-form-builder-properties__label[data-v-1066c78a] { display: block; font-size: 0.75rem; font-weight: 600; color: var(--cv-fb-text-secondary); margin-bottom: 0.25rem;
}
.cv-form-builder-properties__input[data-v-1066c78a], .cv-form-builder-properties__textarea[data-v-1066c78a], .cv-form-builder-properties__select[data-v-1066c78a] { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid var(--cv-fb-border); border-radius: 0.5rem; font-size: 0.8125rem; font-family: inherit; background: var(--cv-fb-bg-input); color: var(--cv-fb-text-primary); transition: border-color 0.15s, box-shadow 0.15s;
}
.cv-form-builder-properties__input[data-v-1066c78a]:focus, .cv-form-builder-properties__textarea[data-v-1066c78a]:focus, .cv-form-builder-properties__select[data-v-1066c78a]:focus { outline: none; border-color: var(--cv-fb-accent); background: var(--cv-fb-bg-panel); box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder-properties__input--disabled[data-v-1066c78a] { background: var(--cv-fb-bg-active); color: var(--cv-fb-text-secondary); cursor: not-allowed;
}
.cv-form-builder-properties__textarea[data-v-1066c78a] { resize: vertical; min-height: 4rem;
}
.cv-form-builder-properties__checkbox-label[data-v-1066c78a] { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 500; color: var(--cv-fb-text-secondary); cursor: pointer;
}
.cv-form-builder-properties__checkbox[data-v-1066c78a] { width: 1rem; height: 1rem; cursor: pointer; accent-color: var(--cv-fb-accent);
}

/* --- Theme variables (light = default) --- */
.cv-form-builder[data-v-37af015e] {
  --cv-fb-bg-base: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 100%);
  --cv-fb-bg-toolbar: #fff;
  --cv-fb-bg-panel: #fff;
  --cv-fb-bg-input: #f8fafc;
  --cv-fb-bg-hover: #f8fafc;
  --cv-fb-bg-active: #f1f5f9;
  --cv-fb-bg-empty: #f8fafc;
  --cv-fb-text-primary: #0f172a;
  --cv-fb-text-secondary: #64748b;
  --cv-fb-text-tertiary: #94a3b8;
  --cv-fb-border: #e2e8f0;
  --cv-fb-border-hover: #cbd5e1;
  --cv-fb-accent: #3b82f6;
  --cv-fb-accent-hover: #2563eb;
  --cv-fb-accent-light: #eff6ff;
  --cv-fb-accent-ring: rgba(59, 130, 246, 0.2);
  --cv-fb-danger: #ef4444;
  --cv-fb-danger-hover: #dc2626;
  --cv-fb-success: #10b981;
  --cv-fb-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --cv-fb-shadow-md: 0 2px 6px rgba(0, 0, 0, 0.06);
  --cv-fb-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --cv-fb-overlay: rgba(15, 23, 42, 0.4);
}
.cv-form-builder--dark[data-v-37af015e] {
  --cv-fb-bg-base: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  --cv-fb-bg-toolbar: #1e293b;
  --cv-fb-bg-panel: #1e293b;
  --cv-fb-bg-input: #334155;
  --cv-fb-bg-hover: #334155;
  --cv-fb-bg-active: #475569;
  --cv-fb-bg-empty: #0f172a;
  --cv-fb-text-primary: #f8fafc;
  --cv-fb-text-secondary: #94a3b8;
  --cv-fb-text-tertiary: #64748b;
  --cv-fb-border: #334155;
  --cv-fb-border-hover: #475569;
  --cv-fb-accent: #60a5fa;
  --cv-fb-accent-hover: #3b82f6;
  --cv-fb-accent-light: #1e3a5f;
  --cv-fb-accent-ring: rgba(96, 165, 250, 0.25);
  --cv-fb-danger: #f87171;
  --cv-fb-danger-hover: #ef4444;
  --cv-fb-success: #34d399;
  --cv-fb-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --cv-fb-shadow-md: 0 2px 6px rgba(0, 0, 0, 0.3);
  --cv-fb-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --cv-fb-overlay: rgba(0, 0, 0, 0.6);
}
.cv-form-builder[data-v-37af015e] {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--cv-fb-bg-base);
}
.cv-form-builder__toolbar[data-v-37af015e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--cv-fb-bg-toolbar);
  border-bottom: 1px solid var(--cv-fb-border);
  box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder__toolbar-left[data-v-37af015e] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cv-form-builder__title[data-v-37af015e] {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--cv-fb-text-primary);
  letter-spacing: -0.02em;
}
.cv-form-builder__subtitle[data-v-37af015e] {
  font-size: 0.8125rem;
  color: var(--cv-fb-text-secondary);
}
.cv-form-builder__toolbar-right[data-v-37af015e] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cv-form-builder__theme-toggle[data-v-37af015e] {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--cv-fb-border);
  border-radius: 0.5rem;
  background: var(--cv-fb-bg-input);
  color: var(--cv-fb-text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 0.25rem;
}
.cv-form-builder__theme-toggle[data-v-37af015e]:hover {
  background: var(--cv-fb-bg-hover);
  color: var(--cv-fb-text-primary);
  border-color: var(--cv-fb-border-hover);
}
.cv-form-builder__layout-select[data-v-37af015e] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
  padding-right: 0.75rem;
  border-right: 1px solid var(--cv-fb-border);
}
.cv-form-builder__layout-label[data-v-37af015e] {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cv-fb-text-secondary);
  white-space: nowrap;
}
.cv-form-builder__layout-select-input[data-v-37af015e],
.cv-form-builder__layout-columns-input[data-v-37af015e] {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--cv-fb-border);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--cv-fb-bg-input);
  color: var(--cv-fb-text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cv-form-builder__layout-select-input[data-v-37af015e]:focus,
.cv-form-builder__layout-columns-input[data-v-37af015e]:focus {
  outline: none;
  border-color: var(--cv-fb-accent);
  box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder__layout-columns-input[data-v-37af015e] {
  width: 3rem;
  text-align: center;
}
.cv-form-builder__dto-loading[data-v-37af015e],
.cv-form-builder__dto-error[data-v-37af015e] {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.cv-form-builder__dto-loading[data-v-37af015e] {
  background: var(--cv-fb-accent-light);
  color: var(--cv-fb-accent-hover);
}
.cv-form-builder__dto-error[data-v-37af015e] {
  background: #fef2f2;
  color: var(--cv-fb-danger);
}
.cv-form-builder--dark .cv-form-builder__dto-error[data-v-37af015e] {
  background: #450a0a;
}
.cv-form-builder__btn[data-v-37af015e] {
  padding: 0.5rem 1rem;
  border: 1px solid var(--cv-fb-border);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--cv-fb-bg-toolbar);
  color: var(--cv-fb-text-secondary);
  transition: all 0.2s;
  box-shadow: var(--cv-fb-shadow-sm);
}
.cv-form-builder__btn[data-v-37af015e]:hover {
  background: var(--cv-fb-bg-hover);
  border-color: var(--cv-fb-border-hover);
  box-shadow: var(--cv-fb-shadow-md);
}
.cv-form-builder__btn--toggle[data-v-37af015e] {
  background: var(--cv-fb-bg-active);
  color: var(--cv-fb-text-secondary);
}
.cv-form-builder__btn--toggle.cv-form-builder__btn--active[data-v-37af015e] {
  background: var(--cv-fb-accent);
  color: #fff;
  border-color: var(--cv-fb-accent-hover);
  box-shadow: 0 2px 4px var(--cv-fb-accent-ring);
}
.cv-form-builder__btn--primary[data-v-37af015e] {
  background: var(--cv-fb-accent);
  color: #fff;
  border-color: var(--cv-fb-accent-hover);
  box-shadow: 0 2px 4px var(--cv-fb-accent-ring);
}
.cv-form-builder__btn--primary[data-v-37af015e]:hover {
  background: var(--cv-fb-accent-hover);
  box-shadow: 0 4px 8px var(--cv-fb-accent-ring);
}
.cv-form-builder__btn--secondary[data-v-37af015e] {
  background: var(--cv-fb-bg-toolbar);
  color: var(--cv-fb-text-secondary);
}
.cv-form-builder__btn--danger[data-v-37af015e] {
  background: var(--cv-fb-danger);
  color: #fff;
  border-color: var(--cv-fb-danger-hover);
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.25);
}
.cv-form-builder__btn--danger[data-v-37af015e]:hover {
  background: var(--cv-fb-danger-hover);
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}
.cv-form-builder__content[data-v-37af015e] {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.cv-form-builder__palette[data-v-37af015e] {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
}
.cv-form-builder__canvas[data-v-37af015e] {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.cv-form-builder__properties[data-v-37af015e] {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
}
.cv-form-builder__import-dialog[data-v-37af015e] {
  position: fixed;
  inset: 0;
  background: var(--cv-fb-overlay);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.cv-form-builder__import-dialog-content[data-v-37af015e] {
  background: var(--cv-fb-bg-toolbar);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--cv-fb-shadow-lg);
  border: 1px solid var(--cv-fb-border);
}
.cv-form-builder__import-dialog-title[data-v-37af015e] {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--cv-fb-text-primary);
  letter-spacing: -0.02em;
}
.cv-form-builder__import-dialog-textarea[data-v-37af015e] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cv-fb-border);
  border-radius: 0.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  resize: vertical;
  min-height: 200px;
  background: var(--cv-fb-bg-input);
  color: var(--cv-fb-text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cv-form-builder__import-dialog-textarea[data-v-37af015e]:focus {
  outline: none;
  border-color: var(--cv-fb-accent);
  background: var(--cv-fb-bg-panel);
  box-shadow: 0 0 0 2px var(--cv-fb-accent-ring);
}
.cv-form-builder__import-dialog-actions[data-v-37af015e] {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.h-screen[data-v-3057092f] {
  height: 100vh;
}
