table {
  --border-color: #eee;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
}

table thead th {
  height: 30px;
  line-height: 30px;
  background-color: #edf0f6;
  color: #333;
  text-align: center;
  border-right: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
}

table thead th:last-of-type {
  border-right: none;
}

table tbody tr {
  height: 35px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr td {
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
}

table.border tbody tr td {
  border-right: 1px solid var(--border-color);
}

/* table.border tbody tr td :last-of-type {
  border-right: none;
} */
