/* Force text to take up more horizontal */
/*.md-grid {
  max-width: 60%; 
}*/

/* https://stackoverflow.com/questions/17536216/create-a-table-without-a-header-in-markdown */
thead th:empty {
    border: thin solid red !important;
    display: none;
}

/* 
Make tables take up full width
From https://github.com/squidfunk/mkdocs-material/discussions/3530
 */
.md-typeset__table {
  width: 100%;
}
.md-typeset__table table:not([class]) {
  display: table
}