:root {
  --ink: #173c33;
  --text: #273e37;
  --muted: #728078;
  --border: #e0e6df;
  --bg: #f5f6f2;
  --green: #275d49;
  --green-soft: #e9f1e7;
  --amber: #86632c;
  --amber-bg: #fbf4e7;
  --white: #fff;
  --radius: 18px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
}
a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #81a996;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  overflow-wrap: anywhere;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -1.2px;
  font-weight: 650;
  color: var(--ink);
  margin: 10px 0 12px;
}
h2 {
  font-size: 18px;
  letter-spacing: -0.35px;
  font-weight: 650;
  color: var(--ink);
}
h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
p {
  line-height: 1.7;
}
.icon {
  width: 20px;
  height: 20px;
  flex: none;
  vertical-align: middle;
}
small {
  font-size: 12px;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 700;
  color: #7e8c75;
}
.app-shell {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 34px 18px 22px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 16px 45px;
}
.brand img {
  object-fit: contain;
  object-position: left;
}
.brand span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.nav-label {
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #96a090;
  margin: 0 15px 12px;
  font-weight: 700;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  margin-bottom: 5px;
  border-radius: 10px;
  color: #718075;
  font-weight: 500;
}
.nav-item.selected {
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 650;
}
.nav-item:hover {
  text-decoration: none;
  background: #f3f5ef;
}
.nav-count {
  margin-left: auto;
  background: #fff9;
  border-radius: 6px;
  padding: 0 7px;
  font-size: 11px;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 18px 14px 0;
  border-top: 1px solid var(--border);
}
.secure-note {
  display: flex;
  gap: 9px;
  font-size: 11px;
  color: #5d7265;
  margin-bottom: 17px;
}
.secure-note small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.text-button {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 0;
  font-size: 12px;
}
.workspace {
  min-width: 0;
}
.topbar {
  height: 76px;
  background: #ffffffa8;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1px;
  color: #819083;
}
.topbar b {
  padding: 0 14px;
  color: #b6c0b7;
  font-weight: 400;
}
.topbar > span span {
  letter-spacing: 0;
  color: #5e7265;
  font-size: 12px;
}
.operator {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0;
  color: #607367;
  font-size: 11px;
}
.avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5ecd9;
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
}
main#main {
  padding: 38px 40px 52px;
  max-width: 1650px;
  margin: auto;
}
.page-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.page-heading p {
  color: var(--muted);
  font-size: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 11px 18px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.15s,
    box-shadow 0.15s;
}
.button:hover {
  text-decoration: none;
  box-shadow: 0 2px 6px #173c330d;
}
.button.primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.button.primary:hover {
  background: #1b4839;
}
.button.secondary,
.small-button {
  background: white;
  border: 1px solid #d9e2d7;
  color: #345443;
}
.small-button {
  padding: 6px 12px;
  min-height: 33px;
  font-size: 11px;
}
.danger-button {
  color: #983f39;
  background: #fff2ef;
  border: 1px solid #f0d0c9;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 0;
  margin-bottom: 34px;
  box-shadow: 0 3px 12px #173c3303;
}
.stats > div {
  padding: 0 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats > div:last-child {
  border: 0;
}
.stats span {
  font-size: 12px;
  color: #748273;
}
.stats strong {
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 550;
  letter-spacing: -0.7px;
}
.stats em {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  margin-left: 8px;
  color: #82917e;
}
.stats small {
  font-size: 10px;
  color: var(--muted);
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 18px;
}
.section-title p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}
.section-title > .muted {
  font-size: 11px;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px 25px 0;
  box-shadow: 0 3px 12px #173c3303;
}
.company-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 10px;
}
.company-icon {
  width: 43px;
  height: 43px;
  background: #f0f3eb;
  border: 1px solid #e9eddf;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #637b4e;
}
.company-icon svg {
  width: 21px;
  height: 21px;
}
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.05px;
  border-radius: 6px;
  padding: 5px 8px;
  background: #f0f2ee;
  color: #6d7a6c;
  font-weight: 500;
}
.tag.green {
  background: #eaf3e7;
  color: #486a3f;
}
.tag.green:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #6d945c;
  border-radius: 50%;
  margin-right: 5px;
}
.tag.amber {
  background: var(--amber-bg);
  color: var(--amber);
}
.company-card h2 {
  font-size: 19px;
  font-weight: 600;
}
.company-card h2 a {
  color: var(--ink);
}
.shop-domain {
  font-size: 11px;
  color: #94a08f;
  margin-top: 5px;
  overflow-wrap: anywhere;
}
.company-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0;
}
.company-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}
.company-facts dt {
  color: #7e8c7b;
}
.company-facts dd {
  margin: 0;
  color: #506349;
  font-weight: 500;
  text-align: right;
}
.company-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf0e9;
  padding: 17px 0;
  font-size: 10px;
  color: #85917f;
  gap: 12px;
}
.company-footer a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
}
.company-footer .icon {
  width: 15px;
  height: 15px;
}
.help-strip {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #78906e;
  background: #edf1e7;
  border: 1px solid #e3eada;
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 30px;
}
.help-strip > .icon {
  margin-top: 3px;
}
.help-strip p {
  font-size: 11px;
  line-height: 1.8;
  color: #748367;
}
.help-strip strong {
  display: block;
  color: #577146;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}
.app-footer {
  padding: 0 40px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  color: #99a28f;
}
.legal-footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 20px;
  font-size: 11px;
}
.legal-footer a {
  color: #8b9685;
}
.card {
  padding: 27px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 22px;
  box-shadow: 0 3px 12px #173c3303;
}
.card-head {
  margin-bottom: 22px;
}
.card-head p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 7px;
  max-width: 780px;
}
.card > p {
  margin-bottom: 12px;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field > span {
  font-size: 12px;
  font-weight: 600;
  color: #53644e;
}
input:not([type="checkbox"]),
select {
  width: 100%;
  border: 1px solid #d6dfd4;
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
}
input::placeholder {
  color: #9aa390;
}
.field small {
  color: #889280;
  font-size: 11px;
}
.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.8;
  color: #63715a;
}
.check input {
  margin: 4px 0 0;
  flex: none;
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}
.form-actions {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: flex-end;
}
.form-card {
  max-width: 1000px;
}
.back {
  display: inline-block;
  font-size: 11px;
  color: #7c8d70;
  margin-bottom: 22px;
}
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 28px;
  margin: 0 0 30px;
  overflow-x: auto;
}
.tabs a {
  font-size: 12px;
  padding: 0 0 15px;
  color: #829078;
  white-space: nowrap;
}
.tabs a[aria-current] {
  color: var(--green);
  border-bottom: 2px solid var(--green);
  font-weight: 600;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 22px;
  background: #edf1e7;
  border-radius: 12px;
  margin: 0 0 30px;
  gap: 15px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: #88947c;
}
.steps li > span {
  border: 1px solid #d3ddc8;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  font-size: 10px;
  background: #fff7;
}
.steps li.done {
  color: #526d44;
}
.steps li.done > span {
  background: #dce9d0;
  border-color: #dce9d0;
}
.steps svg {
  width: 14px;
  height: 14px;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.two-columns > .card {
  margin-bottom: 22px;
}
.align-start {
  align-items: start;
}
.row-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.notice,
.alert {
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 12px;
  line-height: 1.8;
}
.notice {
  background: var(--green-soft);
  color: #45633c;
  border: 1px solid #dbe6d3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.alert {
  background: var(--amber-bg);
  border: 1px solid #efe2c7;
  color: #826632;
}
.alert.danger {
  background: #fff0ed;
  color: #963f36;
  border-color: #f0d0c9;
}
.alert ul {
  margin: 8px 0;
  padding-left: 20px;
}
.alert p {
  margin-top: 6px;
}
.alert strong {
  display: block;
}
.stack > .alert,
.stack > .notice {
  margin: 0;
}
.ready {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #567a45;
  font-size: 12px;
}
.public-address {
  padding: 15px 17px;
  background: #f5f7f1;
  border: 1px solid #e6ebdf;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.public-address span {
  font-size: 10px;
  color: #87967a;
}
.public-address code {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.disclosure {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 22px;
  overflow: hidden;
}
.disclosure summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 12px;
  color: #49643b;
}
.disclosure summary span {
  font-size: 11px;
  font-weight: 400;
  margin-left: 14px;
  color: #8b987f;
}
.bulk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 24px;
  border-top: 1px solid var(--border);
}
.bulk-grid .stack p {
  font-size: 12px;
  color: var(--muted);
}
.inner {
  margin: 22px 0 0;
  background: #f9faf6;
}
.padded {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.mt {
  margin-top: 18px;
}
.table-card {
  padding: 0;
  overflow: hidden;
}
.filters {
  padding: 22px 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.filters .search {
  flex: 1;
}
.filters select {
  min-width: 200px;
}
.table-scroll {
  position: relative;
  overflow: auto;
  overscroll-behavior-x: contain;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
th {
  font-weight: 600;
  color: #7c8b71;
  font-size: 10px;
  line-height: 1.6;
  background: #f6f8f2;
  padding: 15px 20px;
  border-top: 1px solid #e8ede1;
  border-bottom: 1px solid #e8ede1;
  vertical-align: top;
}
td {
  padding: 21px 20px;
  border-bottom: 1px solid #edf0e7;
  vertical-align: top;
  font-size: 12px;
  color: #516648;
}
td small {
  display: block;
  color: #909d85;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.7;
}
td .tag {
  margin-top: 8px;
}
td strong {
  font-weight: 600;
  white-space: nowrap;
}
tbody tr:last-child td {
  border-bottom: 0;
}
tbody tr:hover {
  background: #fbfcf8;
}
.catalog-table {
  min-width: 980px;
}
.catalog-table th:nth-child(2) {
  width: 28%;
}
.catalog-table td:nth-child(2) {
  min-width: 240px;
}
.product-title {
  color: #3a5630;
  font-weight: 600;
}
.sale-label {
  color: #558145 !important;
}
.table-bottom {
  padding: 18px 24px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: #8d9982;
}
.product-heading {
  font-size: 27px;
}
.activity-list > div,
.archive-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0e6;
}
.activity-list > div:last-child,
.archive-list > div:last-child {
  border: 0;
}
.activity-list strong,
.archive-list strong {
  font-size: 12px;
  font-weight: 600;
}
.activity-list p,
.archive-list p {
  font-size: 11px;
  color: #8b9980;
  margin-top: 5px;
}
.activity-list time {
  margin-left: auto;
  color: #8b9980;
  font-size: 10px;
  white-space: nowrap;
}
.activity-dot {
  background: #cfd8c5;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}
.activity-dot.green {
  background: #7f9a68;
}
.activity-dot.amber {
  background: #c7a263;
}
.archive-list .row-actions {
  margin-left: auto;
}
.date-icon {
  background: #f0f4e9;
  border-radius: 9px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #789262;
}
.empty {
  padding: 65px 25px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed #ccd8c2;
  background: #fafcf6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.empty p {
  color: #7d8e70;
  max-width: 560px;
  font-size: 13px;
}
.empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #eaf0e0;
  color: #6b8457;
  display: grid;
  place-items: center;
}
.empty.compact {
  padding: 30px 20px;
}
.empty-cell {
  text-align: center;
  padding: 50px;
  color: var(--muted);
}
.public-header {
  max-width: 1450px;
  margin: auto;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}
.public-header span {
  font-size: 12px;
  color: #8b977d;
}
.public-main {
  max-width: 1450px;
  margin: auto;
  padding: 44px 35px;
}
.public-hero {
  padding: 15px 0 35px;
}
.public-hero h1 {
  overflow-wrap: anywhere;
  font-size: 42px;
  margin: 15px 0;
}
.public-hero p {
  color: #869477;
  font-size: 13px;
}
.public-hero > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 12px;
}
.public-hero > a svg {
  width: 13px;
  height: 13px;
}
.public-table table {
  min-width: 1700px;
}
.public-table td:first-child {
  min-width: 210px;
}
.public-table td {
  padding: 17px;
  font-size: 11px;
}
.public-table th {
  padding: 16px 17px;
}
.public-main > p.muted {
  font-size: 11px;
  margin-bottom: 35px;
}
.login-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.login-wrap {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login-wrap .button {
  width: 100%;
  min-height: 52px;
  font-size: 15px;
}
.login-wrap .alert {
  margin: 0;
}
.inline-warning {
  font-size: 11px;
  color: #a38248;
  margin: 0 0 16px;
}
.demo-banner {
  background: #e8eddc;
  color: #617744;
  padding: 9px 20px;
  text-align: center;
  font-size: 11px;
  border-bottom: 1px solid #d9e1cd;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (min-width: 1500px) {
  main#main {
    padding: 45px 55px;
  }
  .topbar {
    padding: 0 55px;
  }
  .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 190px 1fr;
  }
  .sidebar {
    padding: 28px 12px;
  }
  .brand {
    margin-left: 10px;
  }
  .brand img {
    width: 130px;
  }
  main#main {
    padding: 30px 25px;
  }
  .topbar {
    padding: 0 25px;
  }
  .two-columns {
    grid-template-columns: 1fr;
  }
  .stats > div {
    padding: 0 20px;
  }
  .company-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bulk-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    gap: 10px;
    padding: 15px;
  }
  .steps li {
    font-size: 10px;
  }
}
@media (max-width: 760px) {
  .app-shell {
    display: block;
  }
  .sidebar {
    height: auto;
    position: static;
    border-right: 0;
    padding: 17px 20px 10px;
    border-bottom: 1px solid var(--border);
  }
  .brand {
    margin: 0 0 15px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .brand span {
    font-size: 10px;
  }
  .brand img {
    width: 118px;
    height: 29px;
  }
  .nav-label,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    gap: 8px;
  }
  .nav-item {
    padding: 10px 12px;
    font-size: 12px;
    margin: 0;
  }
  .nav-count {
    margin-left: 0;
  }
  .nav-item .icon {
    width: 17px;
    height: 17px;
  }
  .topbar {
    height: 54px;
    padding: 0 20px;
  }
  .topbar > span {
    font-size: 9px;
  }
  .operator {
    font-size: 0;
  }
  .operator .avatar {
    font-size: 9px;
  }
  .operator .avatar {
    width: 27px;
    height: 27px;
  }
  .topbar b {
    padding: 0 6px;
  }
  main#main {
    padding: 26px 18px 35px;
  }
  .page-heading {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 26px;
  }
  h1 {
    overflow-wrap: anywhere;
    font-size: 28px;
  }
  .page-heading > .button {
    min-height: 39px;
    padding: 10px 14px;
  }
  .stats {
    padding: 19px 0;
    margin-bottom: 27px;
  }
  .stats > div {
    padding: 0 13px;
    gap: 9px;
  }
  .stats span {
    font-size: 10px;
  }
  .stats strong {
    font-size: 26px;
  }
  .stats em {
    display: block;
    font-size: 10px;
    margin: 2px 0 0;
  }
  .stats small {
    font-size: 9px;
  }
  .company-grid {
    grid-template-columns: 1fr;
  }
  .company-card {
    padding: 23px 23px 0;
  }
  .company-card h2 {
    font-size: 20px;
  }
  .company-facts > div {
    font-size: 12px;
  }
  .company-footer {
    padding: 18px 0;
  }
  .app-footer {
    padding: 0 20px 15px;
    flex-direction: column;
    gap: 5px;
    font-size: 9px;
  }
  .card {
    padding: 22px 20px;
  }
  .table-card {
    padding: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-actions {
    justify-content: stretch;
  }
  .form-actions .button {
    width: 100%;
  }
  .tabs {
    gap: 22px;
    margin-bottom: 25px;
  }
  .tabs a {
    font-size: 11px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 17px;
  }
  .steps li {
    font-size: 10px;
  }
  .section-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .filters {
    padding: 19px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .filters .search {
    flex-basis: 100%;
  }
  .filters select {
    min-width: 0;
  }
  .filters > label:not(.search) {
    flex: 1;
  }
  .filters input,
  .filters select {
    font-size: 12px;
  }
  .disclosure summary {
    padding: 18px 20px;
  }
  .disclosure summary span {
    display: block;
    margin: 7px 0 0;
  }
  .bulk-grid {
    padding: 20px;
  }
  .help-strip {
    padding: 18px;
    gap: 11px;
  }
  .table-bottom {
    padding: 15px;
    flex-wrap: wrap;
  }
  .activity-list > div {
    gap: 10px;
    flex-wrap: wrap;
  }
  .activity-list > div > div {
    flex: 1;
  }
  .activity-list time {
    font-size: 9px;
  }
  .activity-list .tag {
    margin-left: 17px;
  }
  .archive-list > div {
    flex-wrap: wrap;
  }
  .archive-list .row-actions {
    width: 100%;
    margin-left: 52px;
  }
  .public-header {
    padding: 20px;
  }
  .public-header span {
    font-size: 10px;
  }
  .public-main {
    padding: 28px 18px;
  }
  .public-hero h1 {
    overflow-wrap: anywhere;
    font-size: 33px;
  }
  .notice,
  .alert {
    padding: 17px 19px;
  }
  .empty {
    padding: 42px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.operator form {
  margin-left: 12px;
}
.operator .text-button {
  font-size: 11px;
}
.page-heading > div {
  min-width: 0;
}

[hidden] {
  display: none !important;
}
.login-wrap #clerk-confirm {
  width: 100%;
  margin: 0;
}
.login-wrap #google-switch {
  align-self: center;
}
.catalog-table .selection-cell {
  width: 48px;
  min-width: 48px;
  padding-left: 14px;
  padding-right: 14px;
  text-align: center;
}
.selection-cell input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}
.bulk-sale-panel {
  margin: 0 20px 20px;
}
.bulk-sale-panel summary {
  flex-wrap: wrap;
  gap: 8px;
}
.bulk-sale-panel [data-selected-count] {
  color: var(--green);
  font-weight: 600;
}
.field input[type="file"] {
  width: 100%;
  min-width: 0;
  padding: 12px;
}
