/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #0b0b0d;
  --bg-elev: #121216;
  --panel: #1b1b21;
  --panel-2: #23232a;
  --text: #f5f5f7;
  --muted: #9a9aa1;
  --accent: #ff7a1a;
  --accent-2: #ff9a3d;
  --border: #2f2f36;
  --shadow: 0 12px 30px #0006;
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: radial-gradient(1200px 600px at 20% -10%, #1c1c22 0%, #1c1c2200 55%), radial-gradient(900px 500px at 120% 0%, #1a1410 0%, #1a141000 50%), var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  font-family: SF Pro Display, SF Pro Text, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

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

.page-shell {
  min-height: 100vh;
}

.app {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  display: flex;
}

.brand {
  letter-spacing: .3px;
  font-size: 26px;
  font-weight: 700;
}

.subtitle {
  color: var(--muted);
  margin-top: 4px;
  font-size: 13px;
}

.tag {
  border: 1px solid var(--border);
  color: var(--muted);
  background: #ffffff05;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

.section {
  margin-bottom: 20px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(155deg, #1b1b21 0%, #141418 80%);
  padding: 16px;
}

.card-muted {
  background: #141418;
}

.row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.title {
  font-size: 18px;
  font-weight: 600;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .6px;
  background: #ff7a1a1a;
  border: 1px solid #ff7a1a66;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.btn {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.btn-primary {
  background: var(--accent);
  color: #140b05;
  box-shadow: 0 8px 16px #ff7a1a40;
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-outline {
  color: var(--accent);
  background: none;
  border-color: #ff7a1a80;
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: #ffffff0a;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.input, .textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text);
  background: #101014;
  padding: 12px 14px;
  font-size: 14px;
}

.textarea {
  resize: vertical;
  min-height: 140px;
}

.input:focus, .textarea:focus {
  border-color: #ff7a1a99;
  outline: none;
  box-shadow: 0 0 0 3px #ff7a1a26;
}

.chat-window {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #101014;
  flex-direction: column;
  gap: 12px;
  height: 340px;
  padding: 16px;
  display: flex;
  overflow-y: auto;
}

.bubble {
  border-radius: 14px;
  max-width: 85%;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.4;
}

.bubble-user {
  background: var(--accent);
  color: #140b05;
  align-self: flex-end;
}

.bubble-ai {
  border: 1px solid var(--border);
  background: #1a1a20;
  align-self: flex-start;
}

.alert {
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: #ff7a1a14;
  border: 1px solid #ff7a1a66;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.table {
  border-collapse: collapse;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #141418;
  width: 100%;
  overflow: hidden;
}

.table th, .table td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 13px;
}

.table th {
  color: var(--muted);
  font-weight: 600;
}

.list-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #141418;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  display: flex;
}

.divider {
  background: var(--border);
  height: 1px;
  margin: 16px 0;
}

.stack {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

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