/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #f6f7f9;
  --foreground: #17202a;
  --muted: #5f6b7a;
  --line: #d9dee7;
  --panel: #fff;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-soft: #e6f4f1;
  --warning: #b45309;
  --focus: #2563eb;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
  padding: 32px;
}

.topbar {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  display: flex;
}

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

.brand {
  letter-spacing: 0;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.subtle {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.badge {
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 6px;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 14px;
  display: inline-flex;
}

.content {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: 960px;
  margin-top: 28px;
  display: grid;
}

.content.wide {
  max-width: 1120px;
}

.panel {
  padding: 0;
}

.panel h2 {
  letter-spacing: 0;
  margin: 0 0 16px;
  font-size: 18px;
}

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

.status-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 88px;
  padding: 14px;
}

.status-label {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.status-value {
  color: var(--accent-strong);
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.section-heading {
  gap: 4px;
  display: grid;
}

.section-heading h2 {
  letter-spacing: 0;
  margin: 0;
  font-size: 20px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

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

.template-card, .quote-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 16px;
  padding: 18px;
  display: grid;
}

.template-topline {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.template-mark {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 1px solid #b7ded7;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
}

.template-category {
  color: var(--muted);
  text-transform: capitalize;
  font-size: 13px;
}

.template-card h3, .quote-panel h2 {
  letter-spacing: 0;
  margin: 0;
  font-size: 18px;
}

.template-specs, .quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  display: grid;
}

.template-specs div, .quote-grid div {
  min-width: 0;
}

dt {
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 12px;
}

dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

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

.price {
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 700;
}

.button, .secondary-link, .small-button {
  cursor: pointer;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.button {
  background: var(--foreground);
  border: 1px solid var(--foreground);
  color: #fff;
}

.button.primary {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.secondary-link {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--foreground);
}

.button:focus-visible, .secondary-link:focus-visible, .small-button:focus-visible, input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.quote-panel {
  max-width: 640px;
}

.quick-nav {
  gap: 10px;
  margin-top: 24px;
  display: flex;
}

.table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

.dashboard-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
}

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

.dashboard-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-table tr:last-child td {
  border-bottom: 0;
}

.empty-cell {
  color: var(--muted);
  text-align: center;
  height: 72px;
}

.status-pill {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 1px solid #b7ded7;
  border-radius: 999px;
  min-height: 28px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.action-row {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.action-row form, .topbar-actions form {
  margin: 0;
}

.small-button {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--foreground);
  border-radius: 6px;
  min-height: 34px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.small-button.danger {
  color: #9f2d16;
  border-color: #f0c4b4;
}

.small-button:disabled {
  cursor: not-allowed;
  opacity: .66;
}

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

.metric-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 96px;
  padding: 16px;
}

.metric-card span {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 13px;
  display: block;
}

.metric-card strong {
  font-size: 20px;
  display: block;
}

.wide-metric {
  grid-column: span 2;
}

.auth-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 14px;
  max-width: 520px;
  padding: 18px;
  display: grid;
}

.field {
  color: var(--foreground);
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  display: grid;
}

.field input {
  border: 1px solid var(--line);
  color: var(--foreground);
  font: inherit;
  border-radius: 6px;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
}

.button-row {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.alert {
  color: var(--warning);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.5;
}

.secret-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  display: grid;
}

.secret-value {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .shell {
    padding: 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .status-grid, .template-grid, .template-specs, .quote-grid {
    grid-template-columns: 1fr;
  }

  .template-footer, .quick-nav, .action-row, .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .wide-metric {
    grid-column: auto;
  }
}

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