body[data-pagename="B2C Release notes"] table {
  width: 100%;
  border-collapse: collapse;
 
  /* explicit outer table border */
  border-width: 1px;
  border-style: solid;
  border-radius: 6px;
}
 
/* Header row (first row only) */
body[data-pagename="B2C Release notes"] table tbody tr:first-child td {
  padding: 10px 12px;
  font-weight: 600;
 
  border-bottom-width: 2px;
  border-bottom-style: solid;
 
  border-right-width: 1px;
  border-right-style: solid;
}
 
/* Body cells */
body[data-pagename="B2C Release notes"] table tbody tr:not(:first-child) td {
  padding: 10px 12px;
  vertical-align: middle;
 
  border-bottom-width: 1px;
  border-bottom-style: solid;
 
  border-right-width: 1px;
  border-right-style: solid;
}
 
/* Remove last column border */
body[data-pagename="B2C Release notes"] table td:last-child {
  border-right: none;
}
 
/* Remove last row border */
body[data-pagename="B2C Release notes"] table tbody tr:last-child td {
  border-bottom: none;
}
 
/* Column behavior */
body[data-pagename="B2C Release notes"] table td:first-child,
body[data-pagename="B2C Release notes"] table td:nth-child(2) {
  white-space: nowrap;
}