/* ── Domain copy cell ── */
.domain-copy {
  display: inline-block;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.domain-copy:hover {
  background: rgba(139,92,246,0.06);
  border-color: rgba(139,92,246,0.15);
}

.domain-copy-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.domain-copy-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
}

.domain-copy-suffix {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

.domain-copy-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
}

.domain-copy:hover .domain-copy-icon {
  opacity: 1;
  color: var(--accent);
}

.domain-copy.copied {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.06);
}

.domain-copy.copied .domain-copy-icon {
  opacity: 1;
  color: var(--success);
}
