table {
  width: 100%;
  max-width: 100%;
  border: 1px solid $border-color;
  border-spacing: 0;
  th, td{
    padding: 8px;
    border: 1px solid  $border-color;
    border-top: 0;
    border-left: 0;
    text-align: start;
    vertical-align: middle;
    &:last-child{
      border-right: 0;
    }
  }
  th{
    font-family: var(--heading-font-family);
  }

  + * {
    margin-top: 20px;
  }
  tbody tr:last-child {
    th, td{
      border-bottom: 0;
    }
  }
}