/**
 * The styles for tables.
 */

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--spacing-sm);
  border-collapse: collapse;
}

.table th,
.table td {
  padding: var(--spacing-xs);
  text-align: inherit;
  border-top: 1px solid var(--color-border);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--color-border);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}
