
copy-component {
  position: relative;
  display: flex;
}

copy-component > *:not([slot="button"]) {
  margin: 1rem;
}
copy-component button {
  position: absolute;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  top: 0;
  right: 0;
  border: none;
}

copy-component button:active {
  background: rgba(0, 0, 0, 0.8);
}
    
