/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #f3efeb;
  --card: #fff;
  --text: #111;
  --muted: #5b5b5b;
  --border: #cdbca9;
  --primary: #000;
  --sand: #e9e5e0;
  --taupe: #dbcdb7;
  --success: #065f46;
  --success-bg: #d1fae5;
  --warn: #92400e;
  --warn-bg: #fef3c7;
  --info: #1e40af;
  --info-bg: #dbeafe;
  --danger: #991b1b;
  --danger-bg: #fee2e2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Proxima Nova, Inter, system-ui, Arial, sans-serif;
  line-height: 1.45;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 32px;
}

.page-shell {
  margin-top: 18px;
}

.app-header {
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 1px 2px #0000000a;
}

.brand {
  font: 700 24px Bauer Bodoni, Bodoni MT, Didot, Georgia, serif;
  letter-spacing: .2px;
}

.brand-sub {
  color: #6a5645;
  font-size: 13px;
  margin-top: 2px;
}

.nav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: #2f2f2f;
  font-weight: 600;
  font-size: 13px;
  background: #fff;
}

.nav-pill.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}

.h1 {
  font-size: 30px;
  margin: 0 0 8px;
  font-family: Bauer Bodoni, Bodoni MT, Didot, Georgia, serif;
  font-weight: 700;
}

.h2 {
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: .1px;
}

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

.row {
  display: grid;
  gap: 10px;
}

.btn {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #b8b8b8;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.input, .select {
  width: 100%;
  padding: 10px;
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  background: #fff;
}

.alert {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 10px;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
}

.alert-error {
  background: var(--danger-bg);
  color: var(--danger);
}

.alert-info {
  background: var(--info-bg);
  color: var(--info);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.badge-queued {
  background: var(--warn-bg);
  color: var(--warn);
}

.badge-completed {
  background: #ede9fe;
  color: #5b21b6;
}

.badge-approved {
  background: var(--info-bg);
  color: var(--info);
}

.badge-sent {
  background: var(--success-bg);
  color: var(--success);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin: 10px 0;
  background: #fff;
}

.empty {
  padding: 16px;
  border: 1px dashed #b8a894;
  border-radius: 6px;
  color: #6c5e52;
  background: #fff;
}

.report-shell {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.report-titlebar {
  background: #000;
  color: #fff;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.report-kicker {
  font-size: 13px;
  color: #f2e7df;
  margin-top: 4px;
}

.report-section {
  margin: 0;
  border-top: 1px solid var(--border);
}

.report-section-head {
  background: var(--sand);
  color: #8f735f;
  padding: 9px 12px;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

.report-section-body {
  padding: 10px 12px;
}

.report-kpi-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 8px 0;
}

.report-kpi {
  border: 1px solid var(--border);
  background: #f8f6f4;
  border-radius: 4px;
  padding: 10px;
}

.report-kpi-label {
  font-size: 12px;
  color: #6f5c4b;
}

.report-kpi-value {
  font-size: 24px;
  font-weight: 700;
}

.report-block {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}

.report-block-head {
  background: var(--taupe);
  padding: 7px 10px;
  font-weight: 700;
  font-size: 12px;
}

.report-block-body {
  padding: 10px;
  background: #fff;
}

.report-table-wrap {
  border: 1px solid var(--border);
  overflow: auto;
  border-radius: 4px;
}

.report-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 520px;
  font-size: 12px;
}

.report-table-v3 {
  table-layout: auto;
}

.report-table th {
  background: #000;
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  border-right: 1px solid #4a4a4a;
  white-space: nowrap;
}

.report-table th:last-child {
  border-right: 0;
}

.report-table td {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}

.report-table tbody tr:nth-child(odd) td {
  background: #f5f2ef;
}

.report-table tbody tr:nth-child(2n) td {
  background: #ece7e1;
}

.table-head-cell, .table-body-cell {
  vertical-align: top;
}

.col-rank {
  width: 68px;
  white-space: nowrap;
}

.cell-rank {
  text-align: center;
  font-weight: 700;
}

.col-delta {
  white-space: nowrap;
}

.delta-positive {
  font-weight: 700;
  color: #166534 !important;
}

.delta-negative {
  font-weight: 700;
  color: #b91c1c !important;
}

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

.report-style-link {
  color: #1e40af;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.report-style-link:hover {
  color: #1d4ed8;
}

@media (width <= 700px) {
  .container {
    padding: 14px;
  }

  .brand {
    font-size: 20px;
  }
}


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