table {
  border-collapse: collapse;
  border-radius: var(--border-radius);
  table-layout: fixed;

  &:first-child {
    margin-left: 0;
  }
  &:last-child {
    margin-right: 0;
  }
}

th {
  border-bottom: var(--border-width) solid #8884;
}

tr,
th,
td {
  padding: var(--padding);
}

tr {
  &:nth-child(even) {
    background: #8881;
  }
  &:hover {
    background: #8882;
  }
}
