.copyable-text {
  text-wrap: wrap;
  word-break: break-all;
  line-height: inherit;
  padding: 0.25rem 0.5rem;
  margin: 0;
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer; }
  .copyable-text i {
    opacity: 0;
    color: var(--text-blue);
    float: right;
    transition: opacity 0.5s ease-in-out; }
  .copyable-text:hover i {
    opacity: 1; }
