/* ============================================================
   ReportFlow — Design System
   Single source of truth for all colours, type, spacing and
   component styles. Views import nothing; they rely on this.
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Accent — primary blue */
  --accent:       #2B5C95;
  --accent-dark:  #234D7E;
  --accent-light: #EDF2F8;
  --accent-mid:   #B8CEDF;

  /* Secondary — teal */
  --secondary:       #2FA7B3;
  --secondary-hover: #238C96;

  /* Semantic state colours */
  --green:     #059669;
  --green-bg:  #F0FDF4;
  --green-bdr: #A7F3D0;
  --amber:     #D97706;
  --amber-bg:  #FFFBEB;
  --amber-bdr: #FDE68A;
  --red:       #DC2626;
  --red-bg:    #FEF2F2;
  --red-bdr:   #FECACA;

  /* Neutrals */
  --text:      #111827;
  --subtext:   #6B7280;
  --muted:     #9CA3AF;
  --border:    #E5E7EB;
  --border-md: #D1D5DB;
  --bg:        #F9FAFB;
  --surface:   #FFFFFF;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ───────────────────────────────────────────── */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 58px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8);
  box-shadow: var(--shadow-xs);
}

.nav-logo {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--accent-dark); text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--subtext);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ── Page wrapper ─────────────────────────────────────────── */
.app-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
}

/* ── Typography ───────────────────────────────────────────── */
h1 {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 var(--space-1);
}
h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--space-3);
}
h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--space-2);
}
.page-title { margin-bottom: var(--space-1); }
.page-sub {
  font-size: 0.9375rem;
  color: var(--subtext);
  margin: 0 0 var(--space-8);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--subtext); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-md); }

/* ── Flash messages ───────────────────────────────────────── */
.flash-notice,
.flash-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-5);
}
.flash-notice { background: var(--green-bg); border: 1px solid var(--green-bdr); color: #065F46; }
.flash-alert  { background: var(--red-bg);   border: 1px solid var(--red-bdr);   color: #991B1B; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
}
.card + .card { margin-top: var(--space-4); }
.card-sm { padding: var(--space-4) var(--space-5); border-radius: var(--radius-md); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, opacity 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:disabled, .btn[disabled] { opacity: 0.5; cursor: not-allowed; }

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

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-md);
}
.btn-secondary:hover { background: var(--bg); color: var(--text); }

.btn-ghost {
  background: transparent;
  color: var(--subtext);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg); color: var(--text); }

.btn-success {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-success:hover { background: #047857; color: #fff; }

.btn-secondary-action {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary-action:hover { background: var(--secondary-hover); border-color: var(--secondary-hover); color: #fff; }

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

.btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 6px 13px; font-size: 0.8125rem; }
.btn-xs { padding: 4px 10px; font-size: 0.75rem; }

/* ── Badges / Pills ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.badge-green  { background: var(--green-bg);  color: var(--green);  border: 1px solid var(--green-bdr); }
.badge-amber  { background: var(--amber-bg);  color: var(--amber);  border: 1px solid var(--amber-bdr); }
.badge-red    { background: var(--red-bg);    color: var(--red);    border: 1px solid var(--red-bdr); }
.badge-gray   { background: #F3F4F6; color: var(--subtext); border: 1px solid var(--border); }
.badge-indigo { background: var(--accent-light); color: var(--accent); border: 1px solid var(--accent-mid); }

.badge-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Form fields ──────────────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--subtext);
}
.field input[type=text],
.field input[type=email],
.field input[type=date],
.field select,
.field textarea,
input[type=text].input,
input[type=date].input,
select.input {
  padding: 8px 12px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
input[type=text].input:focus,
input[type=date].input:focus,
select.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43,92,149,0.12);
}
.field-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Tables ───────────────────────────────────────────────── */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.table-wrap thead th {
  background: var(--bg);
  padding: 10px 16px;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: var(--subtext);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.table-wrap tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}
.table-wrap tbody tr:last-child td { border-bottom: none; }
.table-wrap tbody tr:hover td { background: var(--bg); }

/* ── Status bar strip ─────────────────────────────────────── */
.status-strip {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-xs);
}
.status-strip .s-label { font-weight: 600; color: var(--subtext); }
.status-strip .s-spacer { margin-left: auto; font-size: 0.8125rem; color: var(--muted); }

/* ── Empty / CTA box ──────────────────────────────────────── */
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.cta-box h2 { font-size: 1.1875rem; margin-bottom: var(--space-2); }
.cta-box p  { color: var(--subtext); font-size: 0.9375rem; margin: 0 auto var(--space-6); max-width: 420px; }
.cta-box .cta-hint { font-size: 0.8125rem; color: var(--muted); margin-top: var(--space-3); }

/* ── Section divider row (used in mapping table) ──────────── */
tr.tbl-section td {
  background: var(--bg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--subtext);
  padding: 7px 16px;
  border-bottom: 1px solid var(--border);
}

/* ── Mapping confidence rows ──────────────────────────────── */
tr.conf-matched  { background: #F0FDF8; }
tr.conf-review   { background: #FFFDF0; }
tr.conf-none     { background: #FFF5F5; }
tr.conf-manual   { background: #F0F4F8; }

tr.conf-matched  td:first-child { border-left: 3px solid #10B981; }
tr.conf-review   td:first-child { border-left: 3px solid #F59E0B; }
tr.conf-none     td:first-child { border-left: 3px solid #EF4444; }
tr.conf-manual   td:first-child { border-left: 3px solid #2B5C95; }

/* ── Confidence badges (inline in table) ──────────────────── */
.conf-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.conf-badge-matched  { background: #D1FAE5; color: #065F46; }
.conf-badge-review   { background: #FEF3C7; color: #92400E; }
.conf-badge-none     { background: #FEE2E2; color: #991B1B; }
.conf-badge-manual   { background: #EDF2F8; color: #234D7E; }

/* ── Account select dropdown ──────────────────────────────── */
select.account-select {
  width: 100%;
  padding: 6px 10px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  background: var(--surface);
  color: var(--text);
  min-width: 200px;
  max-width: 340px;
  outline: none;
}
select.account-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43,92,149,0.12);
}
select.account-select-sm {
  padding: 4px 8px;
  font-size: 0.8rem;
  max-width: 100%;
}

/* ── Monospace cell reference ─────────────────────────────── */
.cell-ref {
  font-family: "SF Mono", "Fira Code", "Fira Mono", monospace;
  font-size: 0.775rem;
  color: var(--subtext);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ── Legend row ───────────────────────────────────────────── */
.conf-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 0.8125rem;
  color: var(--subtext);
}
.conf-legend span { display: flex; align-items: center; gap: 5px; }
.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Upload card strip ────────────────────────────────────── */
.upload-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-xs);
}
.upload-strip .us-label { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.upload-strip .us-hint  { font-size: 0.8125rem; color: var(--muted); margin-top: 2px; }
.upload-strip form { display: flex; align-items: center; gap: var(--space-3); flex: 1; flex-wrap: wrap; min-width: 0; }
.upload-strip input[type=file] { font-size: 0.8125rem; flex: 1; min-width: 0; color: var(--subtext); }

/* ── File drop zone ───────────────────────────────────────── */
.file-drop-zone {
  border: 2px dashed var(--border-md);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: block;
}
.file-drop-zone:hover { border-color: var(--accent); background: var(--accent-light); }
.file-drop-zone.has-file { border-color: var(--green); background: var(--green-bg); border-style: solid; }
.file-drop-zone input[type=file] { display: none; }
.fz-label { font-size: 0.9375rem; font-weight: 500; color: var(--subtext); margin-bottom: 4px; }
.fz-hint  { font-size: 0.8125rem; color: var(--muted); }
.fz-filename { font-size: 0.875rem; font-weight: 600; color: var(--green); margin-top: var(--space-2); }

/* ── Grid layouts ─────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

/* ── Entity / Org select card ─────────────────────────────── */
.select-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.select-card:hover { border-color: var(--accent-mid); background: var(--accent-light); }
.select-card.is-selected { border-color: var(--accent); background: var(--accent-light); box-shadow: 0 0 0 2px rgba(43,92,149,0.15); }
.select-card input[type=checkbox] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.sc-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.sc-sub  { font-size: 0.8125rem; color: var(--muted); margin-top: 2px; }

/* ── Dashboard entity card ────────────────────────────────── */
.entity-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow-xs);
}
.entity-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-md); }

.ec-name { font-size: 1.0625rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.ec-type { font-size: 0.75rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.ec-meta { display: flex; flex-direction: column; gap: 7px; }
.ec-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.8125rem;
  gap: var(--space-2);
}
.ec-meta-label { color: var(--muted); flex-shrink: 0; }
.ec-meta-val   { color: var(--text); font-weight: 500; text-align: right; }

.ec-actions { display: flex; align-items: center; gap: var(--space-2); margin-top: auto; }
.ec-actions .btn { flex: 1; text-align: center; }

/* ── Page-level toolbar ───────────────────────────────────── */
.page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.pt-title h1 { margin: 0; }
.pt-title .page-sub { margin: 4px 0 0; }
.pt-actions { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }

/* ── Mapping page toolbar ─────────────────────────────────── */
.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.map-toolbar-left { display: flex; align-items: center; gap: var(--space-4); }

/* ── Connect page (full-screen centred) ───────────────────── */
.connect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: var(--space-6);
}
.connect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 52px 48px 44px;
  text-align: center;
  width: 100%;
  max-width: 420px;
}
.connect-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-8);
  display: block;
}
.connect-heading {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 var(--space-2);
}
.connect-sub {
  font-size: 0.9375rem;
  color: var(--subtext);
  margin: 0 0 var(--space-8);
  line-height: 1.6;
}
.connect-reassurance {
  margin-top: var(--space-5);
  font-size: 0.8125rem;
  color: var(--muted);
}
.btn-xero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: #13B5EA;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-xero:hover { background: #0fa1d3; color: #fff; text-decoration: none; }
.btn-xero:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Segmented control ─────────────────────────────────────── */
.seg-control {
  display: flex;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.seg-option {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.seg-option + .seg-option { border-left: 1.5px solid var(--border-md); }
.seg-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.seg-label {
  display: block;
  padding: 10px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--subtext);
  text-align: center;
  background: var(--surface);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  line-height: 1.3;
}
.seg-radio:checked + .seg-label { background: var(--accent); color: #fff; }
.seg-option:hover .seg-label { background: var(--accent-light); color: var(--accent); }
.seg-radio:checked + .seg-label:hover { background: var(--accent-dark); color: #fff; }

/* ── Orgs page header ─────────────────────────────────────── */
.orgs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.orgs-count {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--subtext);
}
.orgs-count strong { color: var(--accent); }

.select-all-row {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--subtext);
  cursor: pointer;
}
.select-all-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }

.orgs-footer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  margin-top: var(--space-2);
}

/* ── Generate-all results ─────────────────────────────────── */
.gen-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.gen-result-row.ok   { border-color: var(--green-bdr); background: var(--green-bg); }
.gen-result-row.fail { border-color: var(--red-bdr);   background: var(--red-bg); }
.gr-name  { font-weight: 600; font-size: 0.9375rem; }
.gr-stats { font-size: 0.8125rem; color: var(--subtext); margin-top: 3px; }
.gr-error { font-size: 0.8125rem; color: var(--red); margin-top: 3px; }

/* ── Summary stat bar ─────────────────────────────────────── */
.stat-bar {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  font-size: 0.875rem;
}
.stat-bar .sb-item { display: flex; flex-direction: column; gap: 2px; }
.stat-bar .sb-val { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.stat-bar .sb-label { font-size: 0.8125rem; color: var(--muted); }

/* ── Utilities ────────────────────────────────────────────── */
.text-muted  { color: var(--muted); }
.text-sub    { color: var(--subtext); }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.8125rem; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.mt-4        { margin-top: var(--space-4); }
.mt-6        { margin-top: var(--space-6); }
.mb-0        { margin-bottom: 0; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.d-flex      { display: flex; }
.gap-2       { gap: var(--space-2); }
.gap-3       { gap: var(--space-3); }
.gap-4       { gap: var(--space-4); }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-1      { flex: 1; }
.w-full      { width: 100%; }
.italic      { font-style: italic; }
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
