/* Makes table headers stick to the top when scrolling */
.sticky-header th {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #343a40;
  color: #fff;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}