.table-surface,
.ui-scroll-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: max-content;
  min-width: 100%;
  margin: 0;
  color: var(--color-text);
}

.table > :not(caption) > * > * {
  border-bottom-color: var(--color-border);
  padding: 14px 16px;
}

.table thead th {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.table tbody tr:hover {
  background: var(--color-surface-muted);
}

.action-cell {
  white-space: nowrap;
}

.action-cell form {
  display: inline-block;
  margin-left: var(--space-2);
}
