.#{$CLASS_PREFIX}-table {
  border-spacing: unset;

  thead {
    background: #fafafa;
  }

  th,
  td {
    border-bottom: 1px solid #e8e8e8;
    padding: 16px;
  }

  &.bordered {
    border: 1px solid #e8e8e8;
    border-collapse: collapse;
    th,
    td {
      border: 1px solid #e8e8e8;
    }
  }

  tr {
    &.checked {
      background: #fafafa;
    }
    &:hover {
      background: #e6f7ff;
    }
  }
}
