:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --text: #18181b;
  --muted: #71717a;
  --muted-strong: #52525b;
  --border: #e4e4e7;
  --border-strong: #d4d4d8;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: #eff6ff;
  --success: #059669;
  --success-soft: #ecfdf5;
  --warning: #d97706;
  --warning-soft: #fffbeb;
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --sidebar: #1c1c1f;
  --sidebar-soft: #2a2a2f;
  --shadow-sm: 0 1px 2px rgba(24, 24, 27, 0.05);
  --shadow-md: 0 10px 24px rgba(24, 24, 27, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a,
button,
input,
select {
  font: inherit;
}

button,
input,
select {
  min-height: 38px;
}

button {
  appearance: none;
}

.admin-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: var(--sidebar);
  color: #c7c7cf;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--sidebar);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.sidebar-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: #a1a1aa;
  font-size: 12px;
  line-height: 1.25;
}

.sidebar-nav {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-user {
  margin-bottom: 10px;
  color: #a1a1aa;
  font-size: 12px;
  line-height: 1.5;
}

.sidebar-logout-form {
  margin: 0;
}

.sidebar-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.sidebar-logout:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #c7c7cf;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.sidebar-nav a:hover {
  background: var(--sidebar-soft);
  color: #ffffff;
}

.sidebar-nav a.active {
  background: #ffffff;
  color: #111113;
  box-shadow: var(--shadow-sm);
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.main-content {
  min-width: 0;
  width: 100%;
  padding: 28px 32px 40px;
}

.main-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.main-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.card-header,
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.card-header h3,
.section-title-row h3,
.card h3 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
}

.card > h3:not(:last-child) {
  margin-bottom: 16px;
}

.card-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.45;
}

.notice.success {
  background: var(--success-soft);
  color: #047857;
  border: 1px solid #a7f3d0;
}

.notice.error {
  background: var(--danger-soft);
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.notice.warning {
  background: var(--warning-soft);
  color: #a16207;
  border: 1px solid #fde68a;
}

.notice a {
  color: inherit;
  font-weight: 700;
}

.upload-form,
.search-form {
  display: grid;
  gap: 14px;
}

.upload-form label,
.search-fields label,
.claim-field {
  display: grid;
  gap: 6px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.upload-form input[type="file"],
.upload-form input[type="text"],
.upload-form input[type="number"],
.claim-field select,
.search-fields input,
.search-fields select {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.4;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.upload-form input[type="file"] {
  padding: 7px 10px;
}

.upload-form input::file-selector-button {
  margin-right: 10px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-muted);
  color: var(--text);
  cursor: pointer;
}

.upload-form input:focus,
.claim-field select:focus,
.search-fields input:focus,
.search-fields select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-weight: 600 !important;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

button,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}

button:hover,
.download-link:hover {
  background: var(--accent-strong);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.2);
}

button:active,
.download-link:active {
  transform: translateY(1px);
}

.secondary-link {
  background: #ffffff;
  color: var(--muted-strong);
  border-color: var(--border-strong);
}

.secondary-link:hover {
  background: var(--surface-muted);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: none;
}

.inline-form {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: end;
}

.search-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.upload-result {
  display: flex;
  margin-top: 16px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dash-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dash-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.dash-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.dash-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--accent);
}

.dash-icon svg {
  width: 21px;
  height: 21px;
}

.dash-card.accent-green .dash-icon {
  background: var(--success);
}

.dash-card.accent-amber .dash-icon {
  background: var(--warning);
}

.dash-card.accent-ink .dash-icon {
  background: #3f3f46;
}

.dash-copy {
  min-width: 0;
}

.dash-number {
  margin-top: 4px;
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.dash-number.is-action {
  font-size: 19px;
  line-height: 1.25;
}

.dash-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.stat-item {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 15px;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.stat-value {
  margin-top: 6px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 1280px;
  border-collapse: separate;
  border-spacing: 0;
}

.compact-table {
  min-width: 760px;
}

.orders-table {
  min-width: 1520px;
}

.summary-table {
  min-width: 1800px;
}

.sales-table {
  min-width: 980px;
}

.income-table {
  min-width: 780px;
}

.claims-pending-table {
  min-width: 900px;
}

.claimed-records-table {
  min-width: 920px;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  line-height: 1.42;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--surface-muted);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: #f4f7fb;
}

tbody tr:nth-child(even) td {
  background: #fcfcfd;
}

tbody tr:nth-child(even):hover td {
  background: #f4f7fb;
}

.row-warning td {
  background: var(--warning-soft) !important;
}

.number-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.product-cell,
td.product-info-cell {
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.claim-list {
  display: grid;
  gap: 12px;
}

.check-column {
  width: 64px;
  text-align: center;
}

.check-column input[type="checkbox"] {
  width: 17px;
  height: 17px;
  cursor: pointer;
  accent-color: var(--accent);
}

.claim-card {
  display: grid;
  grid-template-columns: auto minmax(260px, 1.8fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
  transition: border-color 0.15s, background 0.15s;
}

.claim-card:hover {
  border-color: var(--border-strong);
  background: #ffffff;
}

.checkbox-cell {
  display: flex;
  align-items: center;
}

.checkbox-cell input[type="checkbox"] {
  width: 17px;
  height: 17px;
  cursor: pointer;
  accent-color: var(--accent);
}

.claim-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.claim-product {
  overflow: hidden;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.claim-meta {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.single-claim-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.table-claim-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.table-claim-form .claim-field {
  min-width: 0;
}

.table-claim-form button {
  white-space: nowrap;
}

.claimed-store-select {
  width: min(280px, 100%);
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
}

.claimed-store-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.claimed-row-form {
  display: inline-flex;
  margin: 0;
}

.batch-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  padding: 14px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  background: var(--accent-soft);
  margin-bottom: 16px;
}

.batch-store-select {
  min-width: min(320px, 100%);
}

.btn-batch {
  background: var(--success);
}

.btn-batch:hover {
  background: #047857;
  box-shadow: 0 6px 14px rgba(5, 150, 105, 0.2);
}

.inline-delete-form {
  display: inline;
  margin: 0;
}

.btn-danger {
  min-height: 32px;
  padding: 6px 12px;
  background: #ffffff;
  color: var(--danger);
  border: 1px solid #fca5a5;
  box-shadow: none;
  font-size: 12.5px;
}

.btn-danger:hover {
  background: var(--danger);
  color: #ffffff;
  border-color: var(--danger);
  box-shadow: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.page-link,
.page-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.page-link {
  min-width: 80px;
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.page-link:hover {
  background: var(--surface-muted);
  border-color: #a1a1aa;
}

.page-link.disabled {
  color: #a1a1aa;
  cursor: default;
  pointer-events: none;
}

.page-info {
  padding: 7px 10px;
  color: var(--muted);
  font-weight: 650;
}

.empty-state {
  padding: 32px 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.unmatched-list {
  display: grid;
  gap: 8px;
}

.unmatched-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 10px 12px;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  background: var(--warning-soft);
  color: #713f12;
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--warning);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
}

.income-value {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1180px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
  }

  .sidebar-header {
    padding: 14px 16px 10px;
  }

  .sidebar-nav {
    display: flex;
    gap: 8px;
    padding: 8px 12px 12px;
    overflow-x: auto;
  }

  .sidebar-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .main-content {
    padding: 22px 16px 32px;
  }

  .card {
    padding: 16px;
  }

  .claim-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .single-claim-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .main-header h2 {
    font-size: 22px;
  }

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

  .dash-card {
    min-height: 104px;
  }

  .search-fields,
  .inline-form {
    grid-template-columns: 1fr;
  }

  .search-actions,
  .single-claim-form {
    grid-template-columns: 1fr;
  }

  .search-actions > *,
  .single-claim-form > button,
  .upload-form > button {
    width: 100%;
  }

  .card-header,
  .section-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-title-row .download-link {
    width: 100%;
  }
}

.btn-edit {
  padding: 4px 12px;
  border: none;
  border-radius: 6px;
  background: var(--warning);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-edit:hover {
  background: #b45309;
}

/* 产品认领页 Tab 切换 */
.claim-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  position: relative;
  padding: 10px 18px;
  border: none;
  background: transparent;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s, background 0.15s;
}

.tab-btn:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.tab-btn.active {
  color: var(--accent-strong);
  font-weight: 600;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--border-strong);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.tab-btn.active .tab-badge {
  background: var(--accent);
  color: #fff;
}

.tab-side-action {
  margin-left: auto;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(5, 150, 105, 0.1), transparent 26%),
    var(--bg);
}

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: min(100%, 420px);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.login-brand h1 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 760;
}

.login-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-form label {
  display: grid;
  gap: 6px;
}

.login-form label span {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 600;
}

.login-form input.input-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.field-error,
.form-error {
  color: var(--danger);
  font-size: 12px;
  line-height: 1.5;
}

.field-error {
  margin-top: -2px;
}

.form-error {
  margin: -4px 0 4px;
  padding: 10px 12px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: var(--danger-soft);
}

.page-size-form {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.page-size-form label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 14px;
}

.page-size-form select {
  min-width: 72px;
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
}

@media (max-width: 620px) {
  .claim-tabs {
    gap: 12px;
  }

  .tab-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-bottom: 0;
  }

  .tab-btn {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    font-size: 14px;
  }

  .tab-btn.active {
    border-color: #bfdbfe;
    background: var(--accent-soft);
  }

  .tab-btn.active::after {
    display: none;
  }

  .tab-side-action {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  .batch-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
  }

  .batch-store-select,
  .batch-toolbar button {
    width: 100%;
  }

  .claims-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .claims-pending-table,
  .claimed-records-table {
    display: block;
    min-width: 0;
  }

  .claims-pending-table thead,
  .claimed-records-table thead {
    display: none;
  }

  .claims-pending-table tbody,
  .claimed-records-table tbody {
    display: grid;
    gap: 12px;
  }

  .claims-pending-table tr,
  .claimed-records-table tr {
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
  }

  .claims-pending-table td,
  .claimed-records-table td {
    display: grid;
    grid-template-columns: minmax(86px, 34%) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    background: transparent !important;
    white-space: normal;
  }

  .claims-pending-table td:last-child,
  .claimed-records-table td:last-child {
    border-bottom: 0;
  }

  .claims-pending-table td::before,
  .claimed-records-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.3;
  }

  .claims-pending-table .product-cell,
  .claimed-records-table .product-cell {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-break: break-word;
  }

  .claims-pending-table .number-cell,
  .claimed-records-table .number-cell,
  .claims-pending-table .check-column {
    text-align: left;
  }

  .claims-pending-table .check-column {
    width: 100%;
  }

  .table-claim-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .table-claim-form button,
  .claimed-row-form,
  .claimed-row-form button,
  .claimed-store-select {
    width: 100%;
  }
}
