/* hide retired drivers */
table tbody tr:nth-last-child(-n+74) {
  display: none;
}

/* hide the checkbox that manipulates last table rows */
#showTable {
  display: none;
}

/* hide "hide" button */
#showTable ~ #hideBtn {
  display: none;
}

/* show retired drivers. */
#showTable:checked {
  /* change the buttons around */
}
#showTable:checked + table tbody tr:nth-last-child(-n+74) {
  display: table-row;
}
#showTable:checked ~ #showBtn {
  display: none;
}
#showTable:checked ~ #hideBtn {
  display: inline;
}

/* style buttons a little bit */
label[for='showTable'] {
  background: lightgrey;
  border-radius: 4px;
  cursor: pointer;
padding: 10px;
}

.heading-menu .menuhead {
    display: inline-block;
}
