/* Make the left-most DCC column sticky */
table#dcc-functions tr td:first-child,
table#dcc-functions tr th:first-child {
  position: sticky;
  left: 0;
}

table#dcc-functions tr td:first-child::after {
  content: '';
  display: block;
  border-right: 1px solid var(--table_color_background-title);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
