/* Headers */
.md-typeset h1 {
  font-weight: 700;
  color: var(--md-primary-fg-color);
  border-bottom: 2px solid var(--md-primary-fg-color--light);
  padding-bottom: 0.2rem;
  margin-bottom: 1rem;
}

.md-typeset h2 {
  font-weight: 600;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  padding-bottom: 0.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Images / Banners */
.md-typeset img {
  border-radius: 5px;
}

/* Tables - Cleaner look */
.md-typeset table:not([class]) {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1rem;
}

.md-typeset table:not([class]) th {
  background-color: var(--md-default-fg-color--lightest);
  color: var(--md-default-fg-color);
  font-weight: 600;
  padding: 0.6rem 1rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  text-align: left;
}

.md-typeset table:not([class]) td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  vertical-align: top;
}

.md-typeset table:not([class]) tr:nth-child(2n) {
  background-color: var(--md-default-bg-color--lighter);
}

.link-icon {
  width: 1em;
  height: 1em;
  margin-right: 4px;
  vertical-align: middle;
  display: inline-block;
  border-radius: 2px;
  transform: translateY(-2px);
}

