/* Custom colors from plot_utils.R palette */
:root > * {
  --md-primary-fg-color:        #33a55e;
  --md-primary-fg-color--light: #4fc27a;
  --md-primary-fg-color--dark:  #29844b;
}

/* Italic tab names styling */
.md-typeset em {
  color: var(--md-primary-fg-color);
  font-weight: 600;
}

/* Ensure logo is visible and properly sized */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  height: 2.4rem;
  width: auto;
  max-width: 200px;
}

/* Ensure white logo is visible on dark header */
.md-header__button.md-logo svg {
  filter: brightness(0) invert(1);
}

/* Fix table styling */
.md-typeset table:not([class]) {
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
  overflow: auto;
  width: 100%;
}

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

.md-typeset table:not([class]) th {
  background-color: var(--md-primary-fg-color);
  color: var(--md-primary-bg-color);
  font-weight: 600;
}

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

.md-typeset table {
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.25rem;
  margin: 1rem 0;
}
