/* Copy buttons */
button.copybtn {
  webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  opacity: 0;
  padding: 2px 6px;
  position: absolute;
  right: 4px;
  top: 4px;
}
div.highlight:hover .copybtn, div.highlight .copybtn:focus {
    opacity: .3;
}
div.highlight .copybtn:hover {
    opacity: 1;
}
div.highlight {
    position: relative;
}

/* Prevent explicit line breaks (i.e. "|") in the RST source causing indentation in tables */
.rst-content table .line-block{
    margin-left:0px;
}

/* Prevent large gap below heading text in tabs generated by ".. tabs::" directive */
div.tabular.menu p{margin-bottom:0px}
