.copy-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 6px 10px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.copy-field span {
  color: #333;
  font-weight: 500;
  letter-spacing: 0.012rem;
  word-spacing: 0.1rem;
}

.copy-field button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  user-select: none;
  -webkit-user-select: none;
  fill: #333;
  transition: all 0.1s ease-out;
  box-shadow: none;
}

.copy-field button:hover {
  background: #00000001;
  fill: #505050;
}

.copy-field button:focus {
  box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 2px #205d6e80;
  outline: 0;
  fill: #205d6e;
}

.copy-field button .success-icon {
  display: none;
}

.copy-field button.success .success-icon {
  display: block;
}

.copy-field button .default-icon {
  display: block;
}

.copy-field button.success .default-icon {
  display: none;
}