body {
  font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

a {
  font-size: 12px;
}
   
/* Increase all font sizes on mobile */
@media (max-width: 767px) { 

  body {
      /* default is 1rem or 16px */
      font-size: 12px;
  }
}

table {
  overflow: hidden;
}

tr:hover {
  background-color: orange;
}

td, th {
  position: relative;
}

td:hover::after,
th:hover::after {
  content: "";
  position: absolute;
  background-color: orange;
  left: 0;
  top: -5000px;
  height: 10000px;
  width: 100%;
  z-index: -1;
}

tr:hover { 
  background: orange; 
}

td:focus::after,
th:focus::after { 
  content: '';  
  background-color: orange;
  position: absolute;  
  left: 0;
  height: 10000px;
  top: -5000px;
  width: 100%;
  z-index: -1;
}

td:focus::before {
  background-color: orange;
  content: '';  
  height: 100%;
  top: 0;
  left: -5000px;
  position: absolute;  
  width: 10000px;
  z-index: -1;
}