/* Custom styles to override MkDocs defaults and enhance theme */
a:link {
    text-decoration: underline;
}

/* Unordered list <ul> symbols:
 * - level 1 is filled circle (disc) - already the default
 * - level 2 is hollow circle (circle)
 * - level 3 is filled square (square)
 * - level 4 is filled circle (disc) - again, because don't have any other choices
 */
article ul ul {
  list-style-type:  circle !important;
}

article ul ul ul {
  list-style-type:  square !important;
}

article ul ul ul ul {
  list-style-type:  disc !important;
}

/*
 * Older Material theme used dark grey background with bold white text for table heading.
 * Newer Material uses white background with bold black text, but the heading does not stand out well.
 * Instead, set the background to a light gray, which works OK.
*/
thead th {
  background-color: #cccccc;
}
