/* [project]/src/app/globals.scss.css [app-client] (css) */
:root {
  --background: #eceff2;
  --surface: #f3f4f6;
  --foreground: #1a1c20;
  --text-muted: #646b77;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-h1: 32px;
  --font-size-h2: 28px;
  --border: #cfd4db;
  --border-subtle: #dde1e7;
  --sidebar-bg: #e6e9ed;
  --sidebar-border: #cfd4db;
  --sidebar-text: #1c1e22;
  --sidebar-muted: #6a707d;
  --sidebar-hover: #0000000d;
  --sidebar-active: #0000001a;
  --panel-border: #0000001a;
  --chat-area-bg: var(--surface);
  --chat-input-bg: var(--sidebar-bg);
  --chat-input-border: var(--sidebar-border);
  --chat-input-highlight: var(--sidebar-hover);
  --chat-input-focus: var(--sidebar-active);
  --chat-input-text: var(--sidebar-text);
  --chat-input-muted: var(--sidebar-muted);
  --chat-input-send-bg-idle: #d9dde3;
  --chat-input-send-color-idle: #6f7684;
  --chat-input-send-bg-active: #121212;
  --chat-input-send-color-active: #f7f8fa;
  --font-geist-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-geist-mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

[data-theme="dark"] {
  --background: #0f1012;
  --surface: #16171a;
  --foreground: #ececec;
  --text-muted: #9aa0a6;
  --border: #262a2f;
  --border-subtle: #1e2024;
  --sidebar-bg: #17181a;
  --sidebar-border: #232529;
  --sidebar-text: #f2f2f2;
  --sidebar-muted: #fff9;
  --sidebar-hover: #ffffff0a;
  --sidebar-active: #ffffff14;
  --panel-border: #ffffff14;
  --chat-area-bg: #242424;
  --chat-input-bg: #2f2f2f;
  --chat-input-border: #ffffff14;
  --chat-input-highlight: #ffffff0d;
  --chat-input-focus: #ffffff29;
  --chat-input-text: #f2f2f2;
  --chat-input-muted: #ffffff8c;
  --chat-input-send-bg-idle: #3a3a3a;
  --chat-input-send-color-idle: #ffffff8c;
  --chat-input-send-bg-active: #f2f2f2;
  --chat-input-send-color-active: #121212;
}

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

html {
  font-size: 16px;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--chat-area-bg);
  font-family: var(--font-geist-sans);
  font-size: var(--font-size-base);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

ul, ol {
  list-style: none;
}

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

img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}

button, input, textarea, select {
  font: inherit;
  color: var(--foreground);
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: none;
}

option {
  color: #1e293b;
  background: #fff;
}

[data-theme="dark"] input, [data-theme="dark"] textarea, [data-theme="dark"] select {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

:-webkit-any(input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill) {
  -webkit-text-fill-color: var(--foreground);
  transition: background-color 5000s ease-in-out;
}

:is(input:autofill, textarea:autofill, select:autofill) {
  -webkit-text-fill-color: var(--foreground);
  transition: background-color 5000s ease-in-out;
}

button {
  background: none;
  border: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

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