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