.rp-llms-copy-button {
  position: relative;
  overflow: hidden;

  &--loading.rp-llms-copy-button {
    background: var(--rp-c-bg-mute);
    opacity: 0.7;
    cursor: wait;
  }

  &--success.rp-llms-copy-button {
    color: #10b981;
    border-color: #10b981;
    background: var(--rp-c-bg-soft);
  }
}

.rp-llms-copy-button--success .rp-llms-copy-button__icon-copy {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.rp-llms-copy-button--success .rp-llms-copy-button__icon-success {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.rp-llms-copy-button__icon-wrapper {
  width: 16px;
  height: 16px;
  position: relative;
}

.rp-llms-copy-button__icon-copy {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.2s ease;
}

.rp-llms-copy-button__icon-success {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #10b981;

  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
