:root {
  --bg: #f0f4f8;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --sidebar: #0f172a;
  --sidebar-hover: rgba(148, 163, 184, 0.15);
  --radius: 10px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  touch-action: manipulation;
}
.container {
  width: 100%;
  padding: 0;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: visible;
}
.title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, #e0f2f1 0%, var(--bg) 45%, #e8eef5 100%);
}
.login-card {
  width: 100%;
  max-width: 400px;
}
.login-card .title {
  margin-bottom: 8px;
  text-align: center;
}
.login-sub {
  margin: 0 0 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.form-item {
  margin-bottom: 14px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #374151;
}
.red-b{
  color: red;
}
input, select, button {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder {
  color: #94a3b8;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}
.btn {
  border: none;
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.15s;
}
.btn:hover {
  background: var(--primary-hover);
}
.error {
  color: #dc2626;
  margin-top: 8px;
  min-height: 18px;
  font-size: 13px;
}
.header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.header .title {
  margin-bottom: 6px;
}
.sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}
.admin-layout {
  min-height: 100vh;
  display: flex;
  position: relative;
}
.sidebar-overlay {
  display: none;
}
.sidebar {
  width: 232px;
  background: var(--sidebar);
  color: #cbd5e1;
  padding: 20px 14px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
  letter-spacing: 0.02em;
  flex: 1;
  min-width: 0;
}
.sidebar-close-btn {
  display: none;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  margin: 0 10px 0 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:hover {
  background: #f8fafc;
}
.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
body.body--nav-open {
  overflow: hidden;
}
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-btn {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 8px;
  margin-bottom: 6px;
  text-align: left;
  padding: 0 14px;
  cursor: pointer;
  color: #94a3b8;
  background: transparent;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.menu-btn:hover {
  background: var(--sidebar-hover);
  color: #e2e8f0;
}
.menu-btn.active {
  color: #fff;
  background: rgba(13, 148, 136, 0.35);
  font-weight: 600;
}
.main-content {
  flex: 1;
  padding: 20px 24px 32px;
  min-width: 0;
}
.main-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.main-topbar-spacer {
  flex: 1;
  min-width: 0;
}
.user-menu {
  position: relative;
}
.user-trigger {
  width: auto;
  min-width: 140px;
  padding: 0 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.user-trigger strong {
  font-weight: 600;
  color: var(--primary);
  margin-left: 4px;
}
.user-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  min-width: 132px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  padding: 6px;
  display: none;
  z-index: 300;
}
.user-menu:hover .user-dropdown,
.user-menu.user-menu--open .user-dropdown,
.user-menu:focus-within .user-dropdown {
  display: block;
}
.logout-item {
  width: 100%;
  border: none;
  background: #fff;
  color: #dc2626;
  text-align: left;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  padding: 0 10px;
}
.logout-item:hover {
  background: #fef2f2;
}
.search-section {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px 20px;
  margin-bottom: 20px;
}
.search-section-head {
  margin-bottom: 16px;
}
.search-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.search-section-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(300px, 1.4fr) auto;
  gap: 16px 20px;
  align-items: end;
}
.search-grid.search-grid--order-filter {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(17rem, 26rem) auto;
  gap: 10px 12px;
  align-items: end;
}
.search-grid.search-grid--order-filter .field--name-narrow {
  max-width: 8rem;
  width: 100%;
  justify-self: start;
}
.search-grid.search-grid--order-filter .field--name-narrow input {
  width: 100%;
  max-width: 100%;
}
.search-grid.search-grid--order-filter .field-actions {
  justify-self: end;
  width: max-content;
  max-width: 100%;
}
.search-grid.search-grid--order-filter .field--date-inline {
  min-width: 0;
  max-width: 26rem;
}
.date-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  min-width: 0;
}
.date-filter-row select {
  width: auto;
  min-width: 7rem;
  max-width: 8rem;
  height: 40px;
  padding-left: 6px;
  padding-right: 4px;
  font-size: 13px;
  flex-shrink: 0;
}
.date-filter-row .date-range--compact {
  flex: 1 1 14rem;
  min-width: 12rem;
  max-width: 19rem;
  gap: 8px;
}
.date-filter-row .date-range--compact input[type="date"] {
  flex: 1 1 0;
  min-width: 0;
  font-size: 13px;
  padding-left: 6px;
  padding-right: 6px;
}
.date-filter-row .date-range--compact .date-sep {
  font-size: 12px;
}
.field label {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 6px;
}
.label-invisible {
  visibility: hidden;
}
.date-range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.date-range input {
  flex: 1;
  min-width: 0;
}
.date-sep {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.field-actions .btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.field-actions .btn-row .btn {
  width: auto;
  min-width: 92px;
  padding: 0 18px;
}
.btn-outline {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.search-hint {
  margin: 12px 0 0;
  font-size: 13px;
  color: #dc2626;
}
.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.table-toolbar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.order-stats {
  font-size: 13px;
  color: var(--text-muted);
}
.order-stats strong {
  color: var(--primary);
  font-weight: 600;
}
.table-wrap {
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.table-scroll {
  overflow-x: auto;
  overflow-y: visible;
  border-radius: inherit;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.table-scroll-hint {
  display: none;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 8px;
  padding: 0 2px;
}
.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pagination-info {
  font-size: 13px;
  color: var(--text-muted);
}
.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination-btn,
.pagination-page {
  min-width: 40px;
  width: auto;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
}
.pagination-btn:hover,
.pagination-page:hover {
  background: #f8fafc;
}
.pagination-btn:disabled,
.pagination-page:disabled {
  background: #f8fafc;
  color: #94a3b8;
  cursor: not-allowed;
}
.pagination-page.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination-ellipsis {
  color: var(--text-muted);
  padding: 0 2px;
  font-size: 13px;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1080px;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.data-table tbody tr {
  transition: background 0.12s;
}
.data-table tbody tr:hover {
  position: relative;
  z-index: 200;
  background: #f8fafc;
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.data-table th {
  background: #f1f5f9;
  color: #475569;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 var(--border);
}
.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
}
.status-pending { background: #f59e0b; }
.status-success { background: #16a34a; }
.status-cancel { background: #6b7280; }
.status-processing { background: #2563eb; }
.status-alert { background: #dc2626; }
.empty {
  text-align: center;
  color: #6b7280;
  padding: 18px 0;
}
.hidden {
  display: none !important;
}
.traveler-td {
  overflow: visible;
}
.traveler-cell {
  position: relative;
  z-index: 0;
  display: inline-block;
  outline: none;
}
.traveler-cell:focus-visible {
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px rgba(13, 148, 136, 0.45);
  border-radius: 4px;
}
.traveler-cell:hover,
.traveler-cell.traveler-cell--open {
  z-index: 2147483647;
}
.traveler-trigger {
  color: #0d9488;
  cursor: pointer;
  font-weight: 500;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  min-height: 0;
}
.traveler-trigger:hover {
  text-decoration: underline;
}
.traveler-popover {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 2147483647;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  margin: 0;
  transform: none;
  min-width: 360px;
  max-width: min(420px, calc(100vw - 16px));
  max-height: min(320px, 55vh);
  overflow: hidden auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
  padding: 10px;
  isolation: isolate;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}
.traveler-cell.traveler-cell--popover-visible .traveler-popover,
.traveler-cell:focus-within .traveler-popover,
.traveler-cell.traveler-cell--open .traveler-popover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.traveler-popover-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 0;
}
.traveler-popover-table th,
.traveler-popover-table td {
  border: 1px solid #e5e7eb;
  padding: 6px 8px;
  text-align: left;
  vertical-align: middle;
}
.traveler-popover-table th {
  background: #f8fafc;
  font-weight: 600;
}
.status-td {
  overflow: visible;
}
.status-cell {
  position: relative;
  z-index: 0;
  display: inline-block;
  outline: none;
}
.status-cell:focus-visible {
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px rgba(13, 148, 136, 0.45);
  border-radius: 8px;
}
.status-cell:hover,
.status-cell.status-cell--open {
  z-index: 2147483646;
}
.status-trigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  min-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.status-trigger .tag {
  cursor: pointer;
}
.status-trigger:hover .tag {
  filter: brightness(1.05);
}
.status-popover {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 2147483646;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  margin: 0;
  transform: none;
  min-width: min(520px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: min(420px, 70vh);
  overflow: hidden auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
  padding: 0;
  isolation: isolate;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}
.status-popover-title {
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 10px 10px 0 0;
}
.status-popover .traveler-popover-table {
  margin: 0;
}
.status-popover .traveler-popover-table thead th:first-child {
  border-top: none;
}
.status-cell.status-cell--popover-visible .status-popover,
.status-cell:focus-within .status-popover,
.status-cell.status-cell--open .status-popover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.action-cell {
  white-space: nowrap;
}
.ferry-export-btn {
  margin-right: 6px;
  padding: 4px 10px;
  font-size: 13px;
  line-height: 1.2;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: #0f766e;
  cursor: pointer;
  vertical-align: middle;
}
.ferry-export-btn:hover {
  background: #f0fdfa;
  border-color: #99f6e4;
}
.download-btn {
  width: 28px;
  height: 28px;
  min-height: 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: #0d9488;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  vertical-align: middle;
}
.download-btn:hover {
  background: #f0fdfa;
  border-color: #99f6e4;
}
.download-btn:disabled {
  color: #94a3b8;
  background: #f8fafc;
  cursor: not-allowed;
}
@media (max-width: 1100px) {
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-grid.search-grid--order-filter {
    grid-template-columns: 1fr 1fr;
  }
  .search-grid.search-grid--order-filter .field--date-inline {
    grid-column: 1 / -1;
    max-width: none;
  }
  .search-grid.search-grid--order-filter .field--date-inline .date-filter-row {
    max-width: 30rem;
  }
  .search-grid.search-grid--order-filter .field-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: auto;
  }
  .field-actions {
    grid-column: 1 / -1;
  }
  .field-actions .btn-row {
    justify-content: flex-start;
  }
}
@media (max-width: 980px) {
  .admin-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .login-wrap {
    min-height: 100dvh;
    padding: 16px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .login-card .title {
    font-size: 20px;
  }
  .card {
    padding: 16px;
    border-radius: 12px;
  }
  .header {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  .header .title {
    font-size: 18px;
  }
  .sub {
    font-size: 13px;
    line-height: 1.55;
  }
  .menu-toggle {
    display: flex;
  }
  .sidebar-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }
  .admin-layout.admin-layout--nav-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .sidebar {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(280px, 86vw);
    max-width: 100%;
    padding: max(12px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
    border-right: none;
    border-bottom: none;
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.25);
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-layout.admin-layout--nav-open .sidebar {
    transform: translateX(0);
  }
  .sidebar-header {
    margin-bottom: 16px;
  }
  .sidebar-title {
    font-size: 15px;
  }
  .sidebar-close-btn {
    display: flex;
  }
  .sidebar-menu {
    flex-direction: column;
    gap: 8px;
  }
  .menu-btn {
    width: 100%;
    margin-bottom: 0;
    height: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 14px;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
  }
  .main-content {
    padding: 12px 12px max(16px, env(safe-area-inset-bottom));
  }
  .main-topbar {
    margin-bottom: 10px;
    width: 100%;
    justify-content: flex-start;
  }
  .user-menu {
    width: 100%;
    max-width: 100%;
  }
  .user-trigger {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    height: auto;
    padding: 8px 12px;
    line-height: 1.35;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .user-dropdown {
    left: 0;
    right: 0;
    min-width: 0;
    width: 100%;
  }
  .search-section {
    padding: 14px 12px;
    margin-bottom: 14px;
  }
  .search-grid {
    gap: 12px;
  }
  .search-grid.search-grid--order-filter .field--date-inline {
    max-width: none;
  }
  .search-grid.search-grid--order-filter .field--name-narrow {
    max-width: none;
  }
  .search-grid.search-grid--order-filter .date-filter-row .date-range--compact {
    max-width: none;
    flex: 1 1 100%;
  }
  .field-actions .btn-row {
    width: 100%;
  }
  .field-actions .btn-row .btn {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    height: 44px;
  }
  .date-range {
    flex-wrap: wrap;
  }
  .date-range input {
    min-width: calc(50% - 6px);
  }
  .table-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .pagination-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .pagination-controls {
    justify-content: flex-start;
  }
  .table-scroll-hint {
    display: block;
  }
  table.data-table {
    min-width: 720px;
  }
  .data-table th,
  .data-table td {
    padding: 10px 10px;
    font-size: 13px;
  }
  .data-table th {
    font-size: 12px;
  }
  .tag {
    font-size: 11px;
    padding: 4px 8px;
  }
  .traveler-popover {
    min-width: 0;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: min(50vh, 360px);
    padding: 8px;
  }
  .traveler-popover-table {
    font-size: 12px;
  }
  .traveler-popover-table th,
  .traveler-popover-table td {
    padding: 6px;
    word-break: break-all;
  }
  .traveler-trigger {
    min-height: 44px;
    padding: 6px 4px;
    display: inline-flex;
    align-items: center;
  }
  input,
  select,
  button:not(.traveler-trigger):not(.logout-item):not(.status-trigger) {
    min-height: 44px;
  }
  .logout-item {
    min-height: 44px;
    height: 44px;
  }
}

/* sidebar nav links */
a.menu-btn {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  color: #94a3b8;
}

table.data-table.refund-table {
  min-width: 960px;
}
