/* Image drop shadow, separates browser from background */
img {
  margin-top: 1rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.2))
}

/* remove margin just for the top nav logo */
.md-logo img {
  margin-top: 0;
  margin-bottom: 0;
}

/* Table formatting */
.md-typeset table:not([class]) {
  font-size: .8rem;
}

.md-typeset table:not([class]) td {
  padding: 0.5em 1.25em;
}

.md-typeset table:not([class]) th {
  padding: 0.5em 1.25em;
}

/* convenience class to keep lines from breaking
useful for wrapping table cell text in a span
to force column width */
.no-wrap {
  white-space: nowrap;
}
