/* Delivery table */
.delivery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.delivery-table th {
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.delivery-table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

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

.delivery-table tbody tr:hover td {
  background: color-mix(in srgb, var(--accent) 4%, var(--surface));
}

.delivery-table .col-check {
  width: 2rem;
  text-align: center;
  padding-left: 0.75rem;
  padding-right: 0;
}

.date-divider-row td {
  background: var(--bg);
}

.date-divider-row:hover td {
  background: var(--bg) !important;
}

/* Pagination — styles live in parser.css (shared) */
