:root {
  --bg: #f4f5f1;
  --panel: #fff;
  --line: #dfe5df;
  --text: #17211b;
  --muted: #657169;
  --green: #2e6b4f;
  --red: #b42318;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", system-ui, sans-serif;
}

h1, h2, p { margin-top: 0; letter-spacing: 0; }

.eyebrow {
  font-size: 13px;
  color: var(--green);
  font-weight: 800;
}

.sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.login-tip {
  margin-top: -10px;
  margin-bottom: 16px;
  font-size: 12px;
}

label {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
}

input, button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}

input {
  padding: 0 11px;
  background: #fbfcfb;
  color: var(--text);
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  border-radius: 8px;
  text-decoration: none;
}

.disabled-button {
  background: #eef1ee;
  color: var(--muted);
  border-color: var(--line);
  cursor: not-allowed;
  opacity: .78;
}

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

.home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.home-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfb;
}

.origin-menu {
  margin-bottom: 12px;
  padding: 14px;
}

.origin-menu-row {
  gap: 8px;
}

.menu-button {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.menu-button.active-button {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.check input {
  min-height: auto;
}

.flash {
  padding: 10px;
  border-radius: 8px;
  margin: 8px 0;
}

.error {
  background: #fee4e2;
  color: var(--red);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 14px;
}

.login-card {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(23, 33, 27, .08);
}

.login-card h1 {
  margin-bottom: 6px;
}

.login-card button {
  width: 100%;
  margin-top: 6px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #edf1eb;
  border-bottom: 1px solid var(--line);
}

.topbar h1 {
  font-size: 22px;
  margin-bottom: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

nav form {
  margin: 0;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.refresh-button {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.layout {
  padding: 14px;
  max-width: 1100px;
  margin: auto;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.stack {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

textarea,
select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  padding: 9px 11px;
  background: #fbfcfb;
  color: var(--text);
}

textarea {
  resize: vertical;
}

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

.origin-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.section-hidden {
  display: none;
}

.origin-layout {
  max-width: 1440px;
}

.origin-panel {
  padding: 14px;
}

.process-board {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(420px, 1.35fr);
  gap: 12px;
  align-items: start;
}

.process-block {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.process-board .process-block {
  margin-top: 0;
}

.process-filter {
  margin: 0;
}

.process-filter-select {
  width: min(220px, 100%);
}

.process-main .short-field {
  width: min(160px, 100%);
}

.employee-process-field {
  width: min(170px, 100%);
}

.process-sub .short-field {
  width: min(180px, 100%);
}

.mode-field {
  width: min(150px, 100%);
}

.price-field {
  width: min(110px, 100%);
}

.inspection-stack {
  display: grid;
  gap: 6px;
}

.inspector-picker {
  width: min(220px, 100%);
  position: relative;
}

.inspector-picker-button {
  width: 100%;
  justify-content: flex-start;
  min-height: 34px;
  padding: 0 10px;
  background: #fbfcfb;
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 12px;
}

.inspector-picker-menu {
  display: grid;
  gap: 4px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  width: min(260px, calc(100vw - 48px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(23, 33, 27, 0.12);
  max-height: 220px;
  overflow: auto;
}

.inspector-picker-menu[hidden] {
  display: none !important;
}

.inspector-picker-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: var(--text);
  white-space: normal;
}

.inspector-picker-option input {
  min-height: auto;
}

.role-field {
  width: min(110px, 100%);
}

.binding-field {
  width: min(190px, 100%);
}

.status-field {
  width: min(88px, 100%);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f6f8f6;
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
}

.pending-pill {
  background: #fff6e8;
  border-color: #f1d6a2;
  color: #9a6700;
}

.confirmed-pill {
  background: #e8f5ec;
  border-color: #b7d9c2;
  color: var(--green);
}

.plain-pill {
  background: #f6f8f6;
  border-color: var(--line);
  color: var(--muted);
}

.ticket-panel {
  margin-bottom: 12px;
}

.ticket-records-head {
  align-items: center;
}

.ticket-head-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-stats-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.stats-open-button,
.stats-tab-button {
  min-width: 88px;
}

.stats-tab-button.active-button {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.ticket-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.ticket-stats-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  overflow: hidden;
}

.ticket-stats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #f6f8f6;
}

.ticket-stats-head h3 {
  margin: 0;
  font-size: 14px;
}

.ticket-stats-table th,
.ticket-stats-table td {
  white-space: nowrap;
}

.ticket-stats-table tfoot th {
  background: #f6f8f6;
}

.ticket-stats-dialog {
  width: min(760px, calc(100vw - 24px));
}

.ticket-stats-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
}

.ticket-stats-body {
  display: grid;
  gap: 14px;
}

.ticket-stats-panel[hidden] {
  display: none !important;
}

.ticket-stats-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.ticket-stats-headline strong {
  font-size: 14px;
}

.ticket-stats-filter-form {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.ticket-stats-filter-item {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.ticket-stats-filter-item input {
  min-width: 150px;
}

.stats-panel {
  margin-bottom: 12px;
}

.stats-filter-form {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-filter-form label {
  margin: 0;
}

.stats-filter-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stats-filter-actions .mini-button {
  min-width: 88px;
}

.stats-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.stats-kpi {
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-kpi span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.stats-kpi strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.stats-summary-table th,
.stats-summary-table td,
.stats-detail-table th,
.stats-detail-table td {
  white-space: nowrap;
}

.stats-summary-table tfoot th,
.stats-detail-table tfoot th {
  background: #f6f8f6;
}

.log-filter-form {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.log-filter-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.log-summary {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.log-table th,
.log-table td {
  white-space: nowrap;
  vertical-align: middle;
  padding-top: 6px;
  padding-bottom: 6px;
}

.log-detail-cell {
  max-width: 680px;
}

.log-detail {
  display: block;
  max-width: min(680px, 48vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticket-stats-empty {
  min-height: 92px;
}

.route-field {
  width: 48px;
}

.ticket-process-field {
  width: min(160px, 100%);
}

.selected-process-display {
  min-height: 34px;
  display: flex;
  align-items: center;
  width: min(680px, 100%);
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfb;
  font-size: 12px;
  line-height: 1.4;
  white-space: normal;
  word-break: break-all;
}

.selected-process-display-empty {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hidden-process-check {
  display: none;
}

.name-col {
  width: 72px;
  max-width: 72px;
}

.process-shortcuts-row td {
  padding-top: 0;
  background: #f8fbf9;
}

.process-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 4px;
}

.process-chip {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 12px;
}

.process-chip.active-chip {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.process-picker-button {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  justify-content: center;
  margin-bottom: 3px;
}

.submit-ticket-button {
  min-width: 64px;
}

.process-shortcuts-helper td {
  padding-top: 6px;
}

.process-picker-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.process-picker-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.process-picker-mask {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 19, 0.38);
}

.process-picker-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 24px));
  margin: min(8vh, 48px) auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(23, 33, 27, 0.16);
  overflow: hidden;
}

.process-picker-head,
.process-picker-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.process-picker-head {
  border-bottom: 1px solid var(--line);
}

.process-picker-head h2 {
  margin: 2px 0 0;
  font-size: 18px;
}

.process-picker-close {
  min-height: 34px;
}

.process-picker-body {
  padding: 14px 16px 16px;
}

.process-picker-current {
  margin-bottom: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
  color: var(--muted);
  font-size: 12px;
}

.process-picker-grid {
  gap: 8px;
}

.picker-chip {
  min-height: 36px;
  padding: 0 12px;
}

.process-picker-actions {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

.process-picker-action {
  min-width: 84px;
}

.product-price-field {
  min-width: 220px;
  margin-bottom: 4px;
}

.ticket-product-field {
  width: 108px;
  min-width: 108px;
}

.uppercase-input {
  text-transform: uppercase;
}

.spec-field {
  width: 56px;
}

.qty-field {
  width: 72px;
}

.product-price-block {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

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

.process-empty-state {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.compact-empty-state {
  min-height: 72px;
  margin-top: 12px;
}

.process-current-parent {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
}

.process-current-parent strong {
  color: var(--text);
}

.origin-panel h2 {
  font-size: 16px;
  margin-bottom: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hint {
  color: var(--muted);
  font-size: 12px;
}

.origin-form {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.single-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.assignment-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  align-items: end;
}

.origin-layout label {
  margin: 0;
  font-size: 12px;
}

.origin-layout input,
.origin-layout select,
.origin-layout button {
  min-height: 34px;
  font-size: 13px;
  border-radius: 6px;
}

.origin-layout input,
.origin-layout select {
  padding: 0 9px;
}

.compact-check {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  white-space: nowrap;
}

.inline-check {
  justify-content: center;
  min-height: 30px;
}

.table-wrap {
  overflow: auto;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.mini-table th,
.mini-table td {
  border-bottom: 1px solid var(--line);
  padding: 8px 6px;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
}

.ticket-table th,
.ticket-table td,
.ticket-record-table th,
.ticket-record-table td {
  padding-left: 4px;
  padding-right: 4px;
}

.mini-table th {
  color: var(--muted);
  font-weight: 700;
  background: #f1f5f2;
}

.table-input,
.table-select {
  width: 100%;
  min-width: 0;
  min-height: 30px;
  font-size: 12px;
  border-radius: 6px;
}

.ticket-table .route-field,
.ticket-record-table .route-field {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}

.ticket-table .spec-field,
.ticket-record-table .spec-field {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
}

.short-field {
  width: min(180px, 100%);
}

.auto-text {
  display: inline-block;
  min-width: 72px;
  color: var(--muted);
  font-size: 12px;
}

.add-row td {
  background: #f8fbf9;
}

.edit-row td {
  background: #fffaf0;
}

.locked-ticket-row td {
  background: #f1f3f1;
  color: #7b857d;
}

.locked-ticket-row .status-pill {
  opacity: 0.95;
}

.locked-ticket-pill {
  min-width: 64px;
  justify-content: center;
}

.cell-text {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.code-cell {
  font-variant-numeric: tabular-nums;
}

.row-actions {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.inline-delete {
  margin: 0;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 6px;
  text-decoration: none;
}

.danger {
  background: #fff;
  color: var(--red);
  border: 1px solid #f1b7b1;
}

.secondary-link {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  text-decoration: none;
}

.inspection-action-button {
  min-width: 68px;
  min-height: 28px;
  padding: 0 6px;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}

.empty {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .process-board {
    grid-template-columns: 1fr;
  }

  .single-row,
  .assignment-form {
    grid-template-columns: 1fr;
  }

  .row-actions {
    flex-wrap: wrap;
  }

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

  .ticket-head-main,
  .ticket-stats-actions {
    width: 100%;
  }

  .ticket-stats-actions {
    gap: 8px;
  }

  .ticket-stats-grid {
    grid-template-columns: 1fr;
  }

  .ticket-table,
  .ticket-record-table,
  .ticket-table thead,
  .ticket-record-table thead,
  .ticket-table tbody,
  .ticket-record-table tbody,
  .ticket-table tr,
  .ticket-record-table tr,
  .ticket-table td,
  .ticket-record-table td {
    display: block;
    width: 100%;
  }

  .ticket-table thead,
  .ticket-record-table thead {
    display: none;
  }

  .ticket-table tr,
  .ticket-record-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .ticket-table td,
  .ticket-record-table td {
    padding: 10px 12px;
    white-space: normal;
    border-bottom: 1px solid var(--line);
  }

  .ticket-table td:last-child,
  .ticket-record-table td:last-child {
    border-bottom: 0;
  }

  .ticket-entry-row td::before,
  .ticket-record-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }

  .ticket-entry-row td[data-label="日期"]::before,
  .ticket-entry-row td[data-label="主工序"]::before {
    margin-bottom: 4px;
  }

  .ticket-table .row-actions,
  .ticket-record-table .row-actions {
    gap: 8px;
  }

  .ticket-table .mini-button,
  .ticket-record-table .mini-button,
  .ticket-table .secondary-link,
  .ticket-record-table .secondary-link {
    min-width: 86px;
  }

  .ticket-stats-tabs {
    padding: 12px 12px 0;
  }

  .ticket-stats-headline {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticket-stats-filter-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats-filter-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats-kpis {
    grid-template-columns: 1fr;
  }

  .log-filter-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .log-filter-actions {
    margin-left: 0;
    justify-content: flex-start;
  }

  .ticket-stats-filter-item input,
  .ticket-stats-filter-item select,
  .stats-filter-actions .mini-button,
  .stats-open-button,
  .stats-tab-button {
    width: 100%;
  }

  .process-shortcuts-helper td::before {
    display: none;
  }

  .route-field,
  .ticket-product-field,
  .spec-field,
  .qty-field,
  .process-picker-button,
  .selected-process-display {
    width: 100%;
    min-width: 0;
  }

  .process-picker-dialog {
    width: calc(100vw - 20px);
    margin-top: 12px;
  }

  .ticket-stats-dialog {
    width: calc(100vw - 20px);
  }

  .process-picker-head,
  .process-picker-actions {
    padding: 12px;
  }

  .process-picker-body {
    padding: 12px;
  }

  .process-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .ticket-record-table {
    display: table;
    width: max-content;
    min-width: 100%;
    table-layout: auto;
  }

  .ticket-record-table thead {
    display: table-header-group;
  }

  .ticket-record-table tbody {
    display: table-row-group;
  }

  .ticket-record-table tr {
    display: table-row;
    margin: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .ticket-record-table th,
  .ticket-record-table td {
    display: table-cell;
    padding: 7px 5px;
    white-space: nowrap;
  }

  .ticket-record-table td {
    border-bottom: 1px solid var(--line);
  }

  .ticket-record-table td::before {
    display: none;
    content: none;
  }

  .ticket-record-table .row-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 112px;
  }

  .ticket-record-table .inline-delete {
    display: inline-flex;
  }

  .ticket-record-table .mini-button,
  .ticket-record-table .secondary-link {
    min-width: 48px;
    min-height: 28px;
    padding: 0 7px;
  }
}

.inspection-record-table .inspection-action-button {
  min-width: 68px;
  min-height: 28px;
  padding: 0 6px;
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
