/* Clipboardjs tooltip styles */
.clipboardjs .tooltip,
.clipboardjs-button .tooltip {
  position: relative;
  display: inline-block;
}
.clipboardjs .tooltip .tooltiptext,
.clipboardjs-button .tooltip .tooltiptext {
  visibility: hidden;
  background-color: black;
  font-weight: normal;
  font-size: medium;
  color: #fff;
  text-align: center;
  padding: 5px 4px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: -200%;
  left: -150%;
}
.clipboardjs .tooltip .tooltiptext::after,
.clipboardjs-button .tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
