/* [project]/apps/web/app/globals.css [app-client] (css) */
@tailwind base;

@tailwind components;

@tailwind utilities;

:root {
  --bg-deep: #060810;
  --bg-card: #ffffff0a;
  --bg-hover: #4f7cff1a;
  --border-subtle: #ffffff1a;
  --border-accent: #4f7cff66;
  --accent: #4f7cff;
  --accent-dim: #2a4dc9;
  --teal: #2dd4bf;
  --teal-dim: #008a6f;
  --amber: #f5a623;
  --coral: #ff6b5b;
  --text-primary: #fff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --text-placeholder: #334155;
  --chat-user-bg: #4f7cff80;
  --chat-ai-bg: #2dd4bf59;
  --chat-border: #4f7cff99;
  --chat-area-bg: #0f1423b3;
  --font-display: "Syne", sans-serif;
  --font-mono: "DM Mono", monospace;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-mono);
  background: var(--bg-deep);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  line-height: 1.6;
}

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

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

::-webkit-scrollbar-thumb {
  background: #4f7cff4d;
  border-radius: 2px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.font-display {
  font-family: var(--font-display);
}

.font-mono {
  font-family: var(--font-mono);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes shimmer {
  0% {
    opacity: .4;
  }

  50% {
    opacity: .9;
  }

  100% {
    opacity: .4;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.98);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.85);
  }
}

.chat-container, .chat-message {
  margin-bottom: 1rem;
  animation: .2s fadeUp;
  display: flex;
}

.chat-area {
  background: var(--chat-area-bg);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #ffffff14;
  border-radius: 16px;
  margin: 8px 0;
  padding: 16px;
}

.message-list {
  background: var(--chat-area-bg);
  border-radius: 16px;
  padding: 16px;
}

.chat-message-user {
  justify-content: flex-end;
}

.chat-message-user .chat-bubble {
  background: var(--chat-user-bg);
  border: 1px solid var(--chat-border);
  color: #fff;
  border-radius: 20px 8px 20px 20px;
  max-width: 80%;
  padding: 10px 16px;
  box-shadow: 0 2px 8px #0003;
}

.chat-message-ai {
  justify-content: flex-start;
}

.chat-message-ai .chat-bubble {
  background: var(--chat-ai-bg);
  color: var(--text-primary);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid #2dd4bf99;
  border-radius: 8px 20px 20px;
  max-width: 85%;
  padding: 10px 16px;
  box-shadow: 0 2px 8px #00000026;
}

.chat-bubble p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.chat-bubble a {
  color: var(--teal);
  text-decoration: underline;
}

.chat-bubble code {
  background: #0000004d;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: .85rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all .2s;
}

.card:hover {
  border-color: var(--border-accent);
  background: var(--bg-hover);
  transform: translateY(-2px);
}

.input-search {
  border: 1px solid var(--border-accent);
  color: var(--text-primary);
  background: #ffffff0d;
  border-radius: 14px;
  width: 100%;
  padding: 11px 18px;
  font-size: .9rem;
}

.input-search::placeholder {
  color: var(--text-placeholder);
}

.input-search:focus {
  border-color: var(--accent);
  background: #ffffff14;
  outline: none;
}

.markdown-body h1, .markdown-body h2, .markdown-body h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  margin-top: 1.5em;
}

.markdown-body code {
  font-family: var(--font-mono);
  color: var(--teal);
  background: #ffffff14;
  border-radius: 4px;
  padding: 2px 6px;
}

.markdown-body pre {
  border: 1px solid var(--border-subtle);
  background: #ffffff08;
  border-radius: 12px;
  padding: 16px;
  overflow-x: auto;
}

.markdown-body a {
  color: var(--accent);
  text-decoration: none;
}

.markdown-body a:hover {
  text-decoration: underline;
}

.technologue-panel .chat-bubble {
  background: #4f7cff40;
  border-color: #4f7cffb3;
}

.empty-state {
  border: 1px solid var(--border-subtle);
  text-align: center;
  background: #ffffff05;
  border-radius: 16px;
  padding: 40px 24px;
}

select {
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  appearance: none;
  cursor: pointer;
  background-color: #0d0f16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748b'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .75rem;
  transition: border-color .15s;
}

select:focus {
  border-color: var(--accent);
  outline: none;
}

/*# sourceMappingURL=apps_web_app_globals_1lkgh9-.css.map*/