/* inline code custom colors */
code.literal {
  /* rgba(0, 0, 0, 1) */
  color: #000000 !important;
  /* rgba(255, 255, 255, 1) */
  background-color: #eeeeee !important;
}

/* code box custom color */
.highlight {
  /* rgba(0, 108, 102, 0.2) */
  background: #cce1e0;
}

/* admonition box custom color */
.rst-content .admonition-title {
  /* rgba(0, 108, 102, 1) */
  background: #006c66;
}
.rst-content .admonition {
  /* rgba(0, 108, 102, 0.2) */
  background: #cce1e0;
}

/* todo box custom color */
.rst-content .admonition-todo .admonition-title {
  /* rgba(239, 124, 0, 1) */
  background: #ef7c00;
}
.rst-content .admonition-todo {
  /* rgba(239, 124, 0, 0.2) */
  background: #fce5cc;
}

/* note box custom color */
.rst-content .note .admonition-title {
  /* rgba(0, 177, 234, 1) */
  background: #00b1ea;
}
.rst-content .note {
  /* rgba(0, 177, 234, 0.2) */
  background: #cceffb;
}

/* equation numbers to the right without clickable link symbols */
.eqno {
  float: right;
}
.eqno .headerlink {
  display: none;
}

/* figure captions in left-aligned normal text with some padding */
.rst-content div.figure p.caption {
  font-style: normal;
  text-align: left;
  padding: 0.25cm 1cm;
  font-size: 85%;
  line-height: 1.2;
}

/* code block captions after code in left-aligned normal text with some padding */
.rst-content .code-block-caption {
  font-style: normal;
  text-align: left;
  padding: 0.25cm 1cm;
  font-size: 85%;
  line-height: 1.2;
}
