/* [project]/apps/vendor/src/app/globals.css [app-client] (css) */
:root {
  --bg-base: #f0f2f5;
  --bg-surface: #fff;
  --bg-surface-hover: #f8f9fb;
  --bg-elevated: #fff;
  --bg-sidebar: #fff;
  --bg-header: #fffffff2;
  --border: #00000014;
  --border-strong: #00000024;
  --text-primary: #111827;
  --text-secondary: #0000008c;
  --text-tertiary: #00000059;
  --accent: #7c3aed;
  --accent-light: #7c3aed1a;
  --accent-text: #6d28d9;
  --success: #16a34a;
  --success-bg: #16a34a1a;
  --warning: #d97706;
  --warning-bg: #d977061a;
  --danger: #dc2626;
  --danger-bg: #dc26261a;
  --info: #2563eb;
  --info-bg: #2563eb1a;
  --input-bg: #0000000a;
  --input-border: #0000001f;
  --shadow-sm: 0 1px 3px #00000014;
  --shadow-md: 0 4px 16px #0000001a;
  --shadow-lg: 0 16px 48px #00000026;
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
}

[data-theme="dark"] {
  --bg-base: #0d0d14;
  --bg-surface: #ffffff0a;
  --bg-surface-hover: #ffffff12;
  --bg-elevated: #13131f;
  --bg-sidebar: #09090ef7;
  --bg-header: #09090ee0;
  --border: #ffffff14;
  --border-strong: #ffffff24;
  --text-primary: #f1f1f5;
  --text-secondary: #ffffff80;
  --text-tertiary: #ffffff47;
  --accent: #7c3aed;
  --accent-light: #7c3aed26;
  --accent-text: #a78bfa;
  --success: #22c55e;
  --success-bg: #22c55e1f;
  --warning: #f59e0b;
  --warning-bg: #f59e0b1f;
  --danger: #ef4444;
  --danger-bg: #ef44441f;
  --info: #3b82f6;
  --info-bg: #3b82f61f;
  --input-bg: #ffffff0f;
  --input-border: #ffffff1a;
  --shadow-sm: 0 1px 3px #0006;
  --shadow-md: 0 4px 16px #0006;
  --shadow-lg: 0 16px 48px #00000080;
}

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

html, body {
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  transition: background .2s, color .2s;
}

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

button {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=apps_vendor_src_app_globals_0q7uxk3.css.map*/