/* QMP TOC basic styles */
.qmp-toc {
  margin: 1rem 0 1.5rem 0;
  font-size: 0.95rem;
}
.qmp-toc__box,
.qmp-toc__details {
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 8px;
  padding: .5rem .75rem;
  background: #fff;
}
.qmp-toc__title,
.qmp-toc__summary {
  font-weight: 600;
  margin: .25rem 0 .5rem 0;
}
.qmp-toc__list {
  margin: .25rem 0 .25rem 1rem;
}
.qmp-toc__list--h3 {
  margin-left: 1rem;
}
.qmp-toc__item {
  margin: .15rem 0;
  list-style: disc;
}
.qmp-toc__item--h3 {
  list-style: circle;
}
.qmp-toc__link {
  text-decoration: none;
}
.qmp-toc__link:hover,
.qmp-toc__link.is-active {
  text-decoration: underline;
}
/* Ensure TOC doesn't collide with QMP Instant Answer */
.qmp-instant-answer + .qmp-toc {
  margin-top: .75rem;
}
/* details default */
.qmp-toc details > summary {
  cursor: pointer;
}
