/* [next]/internal/font/google/dm_sans_1c871f37.module.css [app-client] (css) */
@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../media/c3cb240f9c892514-s.d8e4bce2.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../media/5c285b27cdda1fe8-s.p.a62025f2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans Fallback;
  src: local(Arial);
  ascent-override: 94.9%;
  descent-override: 29.66%;
  line-gap-override: 0.0%;
  size-adjust: 104.53%;
}

.dm_sans_1c871f37-module__30ab_W__className {
  font-family: DM Sans, DM Sans Fallback;
  font-style: normal;
}

.dm_sans_1c871f37-module__30ab_W__variable {
  --font-dm-sans: "DM Sans", "DM Sans Fallback";
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #f6f7f9;
  --surface: #fff;
  --text: #171a1f;
  --muted: #586172;
  --line: #d8dde6;
  --sidebar-bg: #0f1722;
  --sidebar-text: #e5e7eb;
  --accent: #0d6efd;
  --danger: #c53939;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-dm-sans), sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #eef3ff 0%, var(--bg) 40%);
}

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

.appShell {
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  display: grid;
}

.sidebar {
  color: var(--sidebar-text);
  background: linear-gradient(#0b1320 0%, #111827 100%);
  border-right: 1px solid #1f2937;
  padding: 28px 18px;
}

.brand {
  letter-spacing: .03em;
  margin-bottom: 28px;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.navLink {
  color: #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  transition: background .2s;
}

.navLink:hover {
  background: #ffffff14;
}

.content {
  padding: 28px;
}

.pageTitle {
  margin: 0 0 20px;
  font-size: 1.7rem;
}

.cardGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
  display: grid;
}

.card, .panel, .callCard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.panel {
  margin-bottom: 16px;
}

.metric {
  margin: 8px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.06rem;
}

.muted {
  color: var(--muted);
}

.formGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.fullWidth {
  grid-column: 1 / -1;
}

label {
  gap: 6px;
  font-size: .92rem;
  display: grid;
}

input, textarea, select, button {
  font: inherit;
}

input, textarea, select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

textarea {
  resize: vertical;
}

button {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  width: fit-content;
  padding: 10px 14px;
}

button.danger {
  background: var(--danger);
}

.row {
  border-top: 1px dashed #e6e9ef;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: flex;
}

.row:first-of-type {
  border-top: 0;
}

.rowWrap {
  flex-wrap: wrap;
}

.buttonRow {
  gap: 8px;
  display: flex;
}

.status {
  color: #1f3f73;
  background: #ecf3ff;
  border: 1px solid #cde0ff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .8rem;
}

.transcript {
  gap: 6px;
  margin-top: 12px;
  display: grid;
}

@media (max-width: 960px) {
  .appShell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    padding: 14px;
  }

  .nav {
    flex-flow: wrap;
  }

  .content {
    padding: 16px;
  }

  .cardGrid, .formGrid {
    grid-template-columns: 1fr;
  }
}

.placeholderGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
  display: grid;
}

.promptPreview {
  color: #e5e7eb;
  white-space: pre-wrap;
  background: #0f1722;
  border-radius: 10px;
  max-height: 360px;
  padding: 12px;
  font-size: .9rem;
  line-height: 1.35;
  overflow: auto;
}

.successText {
  color: #0a7a31;
  margin-top: 12px;
  font-weight: 600;
}

.errorText {
  color: #b00020;
  margin-top: 12px;
  font-weight: 600;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__30fce4ce._.css.map*/