/* tighten dcc.Markdown spacing */
.inline-markdown p {
  margin: 0;
}

/* if you also want it to behave more inline */
.inline-markdown,
.inline-markdown > p {
  display: inline;
}

/* default: show light */
html[data-mantine-color-scheme="light"] .theme-img-light { display: block !important; }
html[data-mantine-color-scheme="light"] .theme-img-dark { display: none !important; }

/* when Mantine is in dark mode */
html[data-mantine-color-scheme="dark"] .theme-img-light { display: none !important; }
html[data-mantine-color-scheme="dark"] .theme-img-dark  { display: block !important; }
