.myTable {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  margin: 1rem 0 !important;
  border: none !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.myTable td {
  padding: .75rem !important;
  text-align: left !important;
  border-bottom: .0625rem solid #cbd2d6 !important;
  border-top: .0625rem solid #cbd2d6 !important;
  border-left: none !important;
  border-right: none !important;
}

.myTable tr:first-child td {
  background-color: #faf8f5 !important;
  font-weight: bold !important;
  border-top: .0625rem solid #cbd2d6 !important;
  position: relative !important;
  color: #2c2e2f;
}

.myTable tr:first-child td:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  top: 1rem !important;
  bottom: 1rem !important;
  width: .0625rem !important;
  border: .0625rem solid #cbd2d6!important;
  background-color: #ddd !important;
}

.myTable tr td:first-child {
  border-left: 1px solid #ddd !important;
}

.myTable tr td:last-child {
  border-right: 1px solid #ddd !important;
}

.myTable tr:first-child td:first-child {
  border-top-left-radius: 10px !important;
}

.myTable tr:first-child td:last-child {
  border-top-right-radius: 10px !important;
}

.myTable tr:last-child td:first-child {
  border-bottom-left-radius: 10px !important;
}

.myTable tr:last-child td:last-child {
  border-bottom-right-radius: 10px !important;
}