
/* Fix references to not look like parameters */
dl.citation > dt.label {
  display: unset !important;
  float: left !important;
  border: unset !important;
  background: unset !important;
  padding: unset !important;
  margin: unset !important;
  font-size: unset !important;
  line-height: unset !important;
  padding-right: 0.5rem !important;
}

/* Add opening bracket */
dl.citation > dt.label > span::before {
  content: "[";
}

/* Add closing bracket */
dl.citation > dt.label > span::after {
  content: "]";
}

/* pydata-sphinx-theme adds a grey background for html rendered cells in
 * notebooks in dark theme only. This interferes with html rendered text
 * outputs and doesn't seem beneficial for any output cells we use. Here we
 * remove that. */
div.output_area.rendered_html {
  background-color: unset !important;
}
