:root {
  --navy: #14352a;
  --forest: #14352a;
  --green: #1b6b45;
  --lime: #cfe89a;
  --bg: #eef1ee;
  --line: #e2e7e3;
  --muted: #6d7671;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: #17221d;
  font-family: 'DM Sans', sans-serif;
}
h1,
h2,
h3,
.brand {
  font-family: Manrope, sans-serif;
}
a {
  text-decoration: none;
  color: var(--green);
}
aside {
  position: fixed;
  width: 245px;
  inset: 0 auto 0 0;
  background: var(--forest);
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.brand b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--lime);
  color: #193428;
}
.brand small {
  display: block;
  font: 700 8px 'DM Sans';
  letter-spacing: 1.8px;
  color: #87979f;
}
aside nav {
  display: grid;
  gap: 6px;
  margin-top: 48px;
}
aside nav a {
  color: #b8c2c6;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
aside nav a.active,
aside nav a:hover {
  background: #26353e;
  color: #fff;
}
aside form {
  margin-top: auto;
}
aside form button {
  border: 0;
  background: none;
  color: #9aa8ae;
  font-weight: 700;
  cursor: pointer;
}
.main {
  margin-left: 245px;
  min-height: 100vh;
  padding: 0;
}
.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.head h1 {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 5px 0;
}
.head p {
  margin: 0;
  color: var(--muted);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--green);
}
.btn {
  border: 0;
  border-radius: 8px;
  padding: 12px 17px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.stat small {
  display: block;
  color: var(--muted);
  margin-top: 7px;
}
.stat.attention {
  border-color: #ead7ad;
  background: #fffdf7;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.panel-head > div small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.analytics-list,
.inclusion-metrics {
  padding: 18px 22px;
}
.analytics-row + .analytics-row { margin-top: 17px; }
.analytics-row > div { display: flex; justify-content: space-between; margin-bottom: 7px; }
.analytics-row b { font: 800 15px Manrope; }
.analytics-row > span { display: block; height: 8px; border-radius: 99px; background: #edf1ed; overflow: hidden; }
.analytics-row > span i { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.analytics-row small { display: block; color: var(--muted); margin-top: 5px; }
.inclusion-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.inclusion-metrics article { border: 1px solid var(--line); border-radius: 10px; padding: 15px; }
.inclusion-metrics strong { display: block; font: 800 25px Manrope; color: var(--green); }
.inclusion-metrics span, .inclusion-metrics small { display: block; }
.inclusion-metrics span { font-weight: 700; margin-top: 3px; }
.inclusion-metrics small { color: var(--muted); margin-top: 3px; }
.empty-state { color: var(--muted); padding: 8px; }
.stat,
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.stat {
  padding: 22px;
}
.stat span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  font-weight: 700;
}
.stat strong {
  display: block;
  font: 800 32px Manrope;
  margin-top: 7px;
}
.panel {
  overflow: hidden;
}
.panel-head {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-head h2 {
  font-size: 17px;
  margin: 0;
}
.table-wrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  text-align: left;
  padding: 14px 20px;
  border-top: 1px solid #edf0ed;
  font-size: 12px;
}
th {
  border: 0;
  background: #fafbfa;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
}
td strong,
td small {
  display: block;
}
td small {
  color: var(--muted);
  margin-top: 3px;
}
.badge {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 6px;
  background: #edf5ed;
  color: #39704a;
  font-size: 10px;
  font-weight: 700;
}
.badge.pending {
  background: #fff5d9;
  color: #8a6816;
}
.search {
  display: flex;
  max-width: 600px;
  margin: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.search input {
  flex: 1;
  border: 0;
  padding: 11px;
  outline: 0;
}
.search button {
  border: 0;
  border-left: 1px solid var(--line);
  background: #fafbfa;
  padding: 0 16px;
}
.auth {
  background: linear-gradient(135deg, #17262f, #143a2d);
}
.auth main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 25px;
}
.auth-card {
  width: min(420px, 100%);
  background: #fff;
  padding: 38px;
  border-radius: 16px;
}
.auth-card .brand {
  color: #17221d;
  margin-bottom: 45px;
}
.auth-card h1 {
  font-size: 27px;
  margin: 8px 0;
}
.muted {
  color: var(--muted);
}
.stack {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}
label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}
input,
select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  outline: 0;
  font: inherit;
}
.wide {
  width: 100%;
}
.note {
  background: #f3f7ef;
  padding: 13px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
}
.form-panel {
  max-width: 650px;
  padding: 25px;
}
.toast {
  position: fixed;
  right: 25px;
  top: 20px;
  background: var(--green);
  color: #fff;
  padding: 13px 17px;
  border-radius: 8px;
  z-index: 9;
}
.toast.error {
  background: #b4433c;
}
@media (max-width: 760px) {
  aside {
    position: static;
    width: auto;
    min-height: auto;
    padding: 16px;
  }
  aside nav {
    margin-top: 18px;
    display: flex;
    overflow: auto;
  }
  aside form {
    position: absolute;
    right: 15px;
    top: 25px;
  }
  .main {
    margin: 0;
    padding: 28px 16px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .head {
    display: block;
  }
  .head .btn {
    display: inline-block;
    margin-top: 18px;
  }
  .auth main {
    padding: 18px;
  }
  .table-wrap {
    overflow: auto;
  }
}

/* Keep standard admin form cards centered within the available content area. */
.form-panel {
  width: 100%;
  margin-inline: auto;
}

/* Compact sidebar branding */
aside {
  padding-top: 22px;
}
aside nav {
  margin-top: 24px;
}

/* Demographic reports */
.report-stats {
  grid-template-columns: repeat(4, 1fr);
}
.report-panel {
  margin-bottom: 22px;
}
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.panel-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.stat small {
  color: var(--muted);
}
@media (max-width: 1000px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .report-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .report-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .report-stats {
    grid-template-columns: 1fr;
  }
}
.report-head {
  gap: 20px;
}
.report-actions {
  display: flex;
  gap: 10px;
}
.btn.download {
  white-space: nowrap;
}
.btn.secondary {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--line);
}
.section-title {
  margin: 30px 0 15px;
}
.section-title h2 {
  margin: 0;
  font-size: 20px;
}
.section-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.demographic-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}
.demographic-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(20, 50, 35, 0.035);
}
.demographic-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.demographic-card-head span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.demographic-card-head strong {
  font: 800 31px Manrope;
  display: inline-block;
  margin-top: 4px;
}
.demographic-card-head small {
  color: var(--muted);
  margin-left: 5px;
}
.card-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #edf5ed;
  color: var(--green);
  display: grid;
  place-items: center;
  font: 800 16px Manrope;
}
.gender-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  background: #f7f9f6;
  border-radius: 10px;
}
.gender-row div {
  border-right: 1px solid var(--line);
}
.gender-row div:last-child {
  border: 0;
}
.gender-row span,
.gender-row small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.gender-row strong {
  font: 800 18px Manrope;
}
.age-list h3 {
  font-size: 12px;
  margin: 0 0 10px;
}
.age-item {
  display: grid;
  grid-template-columns: 78px 1fr 28px 43px;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 10px;
}
.age-item > span,
.age-item small {
  color: var(--muted);
}
.age-item small {
  text-align: right;
}
.age-bar {
  height: 6px;
  background: #edf0ed;
  border-radius: 5px;
  overflow: hidden;
}
.age-bar i {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 5px;
}
.inclusion-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 16px;
}
.inclusion-row > span {
  background: #f1f6ed;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 10px;
  color: var(--muted);
}
.inclusion-row b {
  color: #17221d;
}
.inclusion-row small {
  color: var(--green);
}
.status-cards,
.county-cards {
  padding: 17px;
  display: grid;
  gap: 10px;
}
.status-cards article,
.county-cards article {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px;
}
.status-cards article > strong {
  display: block;
  margin-bottom: 9px;
}
.status-cards article div {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.status-cards span {
  font-size: 10px;
  color: var(--muted);
}
.status-cards b {
  color: #17221d;
  margin-left: 3px;
}
.county-cards {
  grid-template-columns: repeat(2, 1fr);
}
.county-cards article {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.county-cards strong,
.county-cards small {
  display: block;
}
.county-cards small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 2px;
}
.county-cards article > b {
  font: 800 20px Manrope;
  color: var(--green);
}
@media (max-width: 1000px) {
  .demographic-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .report-head {
    display: block;
  }
  .report-actions {
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .demographic-card {
    padding: 16px;
  }
  .gender-row {
    gap: 5px;
  }
  .age-item {
    grid-template-columns: 70px 1fr 24px 38px;
  }
  .county-cards {
    grid-template-columns: 1fr;
  }
}

/* NAVCDP-inspired administration shell */
:root {
  --navy: #14352a;
  --forest: #14352a;
  --green: #1b6b45;
  --lime: #cfe89a;
  --bg: #eef1ee;
  --cream: #eef1ee;
  --surface: #ffffff;
  --line: #e2e7e3;
  --muted: #6d7671;
  --ink: #1b2420;
  --icon-wash: #e7f2ea;
  --topbar-h: 64px;
}
html,
body {
  background: var(--bg);
  color: var(--ink);
}
aside {
  background: var(--forest);
  padding: 22px 14px 22px;
  z-index: 120;
}
aside nav a {
  color: #b7c6be;
  border-radius: 10px;
  font-weight: 600;
}
aside nav a.active,
aside nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}
aside nav a.active {
  background: rgba(198, 214, 196, 0.18);
  color: #fff;
}
.sidebar-toggle {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: var(--forest) !important;
  color: #b7c6be !important;
}
.main {
  margin-left: 245px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--bg);
}
.sidebar-collapsed .main {
  margin-left: 76px;
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--topbar-h);
  padding: 12px 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(20, 53, 42, 0.06);
}
.topbar-title {
  min-width: 0;
  flex: 1;
}
.topbar-title h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
}
.topbar-title .eyebrow {
  margin: 0 0 2px;
}
.topbar-title .head-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.topbar-page-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar-page-actions .btn {
  padding: 8px 14px;
  font-size: 12px;
}
.topbar-page-actions .badge {
  font-size: 11px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.admin-page-body {
  flex: 1;
  padding: 16px 28px 56px;
}
.page-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20, 53, 42, 0.03);
}
.page-toolbar-actions-only {
  justify-content: flex-end;
  padding: 12px 16px;
}
.toolbar-search {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.toolbar-search .filter-field {
  width: min(360px, 100%);
  min-width: 220px;
}
.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.filter-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.filter-field span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.toolbar-search .filter-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.report-summary-stats {
  margin-bottom: 14px;
}
.report-summary-stats .stat strong {
  font-size: 22px;
}
  width: min(280px, 100%);
  min-width: 200px;
}
.report-description {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  max-width: 520px;
}
.report-table-wrap {
  overflow-x: auto;
}
.report-table-wrap table {
  min-width: max-content;
}
.report-table-wrap td {
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-back-link {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}
.page-back-link:hover {
  color: var(--green);
}
.filter-field input,
.filter-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fafbfa;
  font: inherit;
  color: var(--ink);
}
.head {
  display: none;
}
.btn {
  border-radius: 10px;
  background: var(--green);
  box-shadow: none;
  padding: 10px 15px;
  font-size: 13px;
  white-space: nowrap;
}
.btn:hover {
  background: #155738;
}
.btn.secondary,
.btn.ghost {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost {
  color: var(--muted);
}
.btn.ghost:hover {
  color: var(--green);
  border-color: #c9d8cc;
  background: #f8faf8;
}
.page-filters {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20, 53, 42, 0.03);
}
.page-filters-wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr)) auto;
  align-items: end;
}
.filter-field .payroll-error {
  color: #b4433c;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.filter-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.head-actions,
.report-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.stat,
.panel,
.demographic-card,
.value-chain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(20, 53, 42, 0.03);
}
.stat {
  position: relative;
  padding: 18px 20px 16px;
  min-height: 112px;
  transition: box-shadow 0.16s ease, border-color 0.16s ease;
}
.stat:hover {
  border-color: #d4dfd6;
  box-shadow: 0 10px 28px rgba(20, 53, 42, 0.06);
}
.stat span:not(.stat-icon) {
  color: #7b857f;
  letter-spacing: 0.08em;
  padding-right: 46px;
  font-size: 10px;
}
.stat strong {
  margin-top: 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat small,
.stat > a {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
}
.stat.attention {
  border-color: #ead9a8;
  background: #fffdf7;
}
.stat-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--icon-wash);
  color: var(--green);
}
.stat-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dashboard-grid {
  gap: 14px;
  margin-bottom: 14px;
}
.panel-head {
  padding: 16px 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-head h2 {
  font-size: 15px;
  letter-spacing: -0.02em;
  margin: 0;
}
.panel-head > div small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 12px;
}
.panel-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.panel-head a {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.panel-head a:hover {
  color: var(--green);
}
.panel-table .panel-head {
  border-bottom: 1px solid var(--line);
}
.panel-table .panel-head > div small {
  display: none;
}
.table-wrap table {
  min-width: 720px;
}
th,
td {
  padding: 13px 18px;
  font-size: 13px;
  border-top-color: #eef1ee;
}
th {
  background: #f7f8f6;
  color: #7a847e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
td strong {
  color: var(--forest);
  font-size: 13px;
}
tbody tr:hover td {
  background: #f8faf8;
}
td[colspan] {
  text-align: center;
  color: var(--muted);
  padding: 42px 20px;
  background: #fff;
}
.search {
  display: none;
}
.badge {
  background: var(--icon-wash);
  color: #2f6a43;
  border-radius: 999px;
  padding: 5px 10px;
}
.badge.pending {
  background: #fff4d8;
  color: #8a6816;
}
input,
select,
textarea {
  border-radius: 10px;
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 107, 69, 0.12);
  outline: 0;
}
.auth {
  background: linear-gradient(150deg, #14352a, #1b6b45);
}
.county-name {
  color: var(--forest);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.analytics-list,
.inclusion-metrics,
.status-cards,
.county-cards {
  padding: 8px 18px 18px;
}
.inclusion-metrics article,
.status-cards article,
.county-cards article {
  border-radius: 12px;
  background: #f8faf8;
}
.training-tabs,
.inventory-tabs,
.payroll-tabs {
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.training-tabs button,
.inventory-tabs a,
.payroll-tabs a {
  border: 0;
  border-bottom: 0;
  border-radius: 9px;
  padding: 9px 14px;
  color: var(--muted);
  font-weight: 700;
}
.training-tabs button.active,
.inventory-tabs a.active,
.payroll-tabs a.active {
  color: var(--green);
  background: var(--icon-wash);
  border-color: transparent;
}
.toast {
  position: fixed;
  right: 24px;
  top: calc(var(--topbar-h) + 12px);
  z-index: 200;
}
@media (max-width: 1200px) {
  .stats,
  .report-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-filters-wide {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .main {
    margin-left: 0;
  }
  .admin-page-body {
    padding: 18px 16px 48px;
  }
  .admin-topbar {
    padding: 10px 16px;
  }
  .page-filters,
  .page-filters-wide {
    grid-template-columns: 1fr;
  }
  .filter-actions {
    width: 100%;
  }
  .filter-actions .btn {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 760px) {
  .stats,
  .report-stats,
  .inventory-stats {
    grid-template-columns: 1fr;
  }
  .head {
    flex-direction: column;
    align-items: flex-start;
  }
  .head h1 {
    font-size: 24px;
  }
}
