/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  color: #1f2937;
  background: #f6f7f9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #0f766e;
}

.shell {
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  display: grid;
}

.panel {
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  width: min(760px, 100%);
  padding: 32px;
  box-shadow: 0 18px 45px #0f172a14;
}

.auth-panel {
  width: min(440px, 100%);
}

.auth-form {
  gap: 16px;
  margin-top: 24px;
  display: grid;
}

.auth-form label {
  color: #374151;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  display: grid;
}

.auth-form input {
  color: #111827;
  min-height: 44px;
  font: inherit;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  padding: 0 12px;
}

.auth-form input:focus {
  border-color: #0f766e;
  outline: 0;
  box-shadow: 0 0 0 3px #0f766e24;
}

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

.sidebar {
  background: #fff;
  border-right: 1px solid #d8dee6;
  padding: 24px;
}

.brand {
  margin-bottom: 24px;
  font-weight: 800;
}

nav {
  gap: 10px;
  display: grid;
}

nav a {
  color: #374151;
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
}

nav a:hover {
  background: #eef2f7;
}

.logout-link {
  color: #991b1b;
  border-top: 1px solid #eef2f7;
  margin-top: 12px;
}

.workspace {
  padding: 32px;
}

.metric-grid, .table-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  display: grid;
}

.metric, .row-card {
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  padding: 18px;
}

.integration-hero {
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  display: flex;
}

.integration-hero h2, .row-card h2 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  display: flex;
}

.card-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}

.control-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
  display: grid;
}

.control-form.compact {
  align-items: end;
}

.control-form label {
  color: #374151;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}

.control-form input, .control-form select {
  color: #111827;
  min-height: 40px;
  font: inherit;
  background: #fff;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  padding: 0 10px;
}

.control-form input:focus, .control-form select:focus {
  border-color: #0f766e;
  outline: 0;
  box-shadow: 0 0 0 3px #0f766e24;
}

.control-form .button {
  align-self: end;
}

.checkline {
  align-items: center;
  min-height: 40px;
  gap: 10px !important;
  display: flex !important;
}

.checkline input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.slot-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
  display: grid;
}

.decision-actions {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.sync-action {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
  display: flex;
}

.inline-status {
  color: #4b5563;
  text-align: right;
  width: 100%;
  font-size: 13px;
  line-height: 1.45;
}

.inline-status.success {
  color: #115e59;
}

.inline-status.error {
  color: #991b1b;
}

.notice {
  color: #374151;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  padding: 14px 16px;
}

.notice.success {
  color: #115e59;
  background: #f0fdfa;
  border-color: #99f6e4;
}

.notice.error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.button {
  color: #fff;
  cursor: pointer;
  min-height: 42px;
  font: inherit;
  background: #0f766e;
  border: 1px solid #0f766e;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.button:hover {
  color: #fff;
  background: #115e59;
}

.button.secondary {
  color: #374151;
  background: #fff;
  border-color: #cfd6df;
}

.button.secondary:hover {
  color: #111827;
  background: #f3f5f8;
}

.button:disabled {
  cursor: wait;
  opacity: .68;
}

.status-pill {
  color: #4b5563;
  background: #f6f7f9;
  border: 1px solid #d8dee6;
  border-radius: 999px;
  align-items: center;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.status-pill.success {
  color: #115e59;
  background: #ccfbf1;
  border-color: #99f6e4;
}

.compact-list {
  gap: 12px;
  margin: 16px 0 0;
}

.compact-list dd {
  overflow-wrap: anywhere;
}

.scope-list {
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
}

.scope-list li {
  overflow-wrap: anywhere;
  color: #374151;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.data-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
}

.data-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.data-table th, .data-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 8px;
}

.data-table th {
  color: #6b7280;
  text-transform: uppercase;
  font-size: 12px;
}

.data-table td:first-child {
  overflow-wrap: anywhere;
  min-width: 340px;
}

.json-panel {
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
  overflow-x: auto;
}

.mini-code {
  color: #111827;
  white-space: pre-wrap;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  max-width: 420px;
  max-height: 180px;
  margin: 0;
  padding: 8px;
  font-size: 12px;
  line-height: 1.45;
  overflow: auto;
}

.metric span, .muted {
  color: #6b7280;
}

.metric strong {
  margin-top: 8px;
  font-size: 24px;
  display: block;
}

.metric small {
  color: #6b7280;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  display: block;
}

.stack {
  gap: 16px;
  display: grid;
}

.table-note {
  margin-top: 16px;
}

@media (max-width: 760px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-bottom: 1px solid #d8dee6;
    border-right: 0;
  }

  .integration-hero {
    display: grid;
  }

  .actions {
    justify-content: stretch;
  }

  .card-header {
    display: grid;
  }

  .sync-action {
    justify-content: stretch;
    width: 100%;
  }

  .inline-status {
    text-align: left;
  }

  .button {
    width: 100%;
  }
}

.eyebrow {
  color: #0f766e;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.04;
}

p {
  color: #4b5563;
  max-width: 660px;
  font-size: 18px;
  line-height: 1.65;
}

dl {
  gap: 16px;
  margin: 28px 0 0;
  display: grid;
}

dt {
  color: #6b7280;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

dd {
  overflow-wrap: anywhere;
  margin: 4px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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