/* Hide the default WP Edit link in the meta row */
.comment-metadata .edit-link,
.comment-edit-link {
  display: none !important;
}

/* When we move the delete link into the meta row, style inline */
.comment-metadata .icdm-link,
.comment-meta .icdm-link,
footer.comment-meta .icdm-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 0;
  border: 0;
  color: #ff2e69;
  font-weight: 600;
  font-size: .92rem;
  margin-left: 12px;
  text-decoration: none;
}
.comment-metadata .icdm-link:hover,
.comment-meta .icdm-link:hover,
footer.comment-meta .icdm-link:hover {
  text-decoration: underline;
}

/* Fallback position (under the comment) if JS cannot move it */
.icdm-after .icdm-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 4px 10px;
  border: 1px solid #ff2e69;
  border-radius: 10px;
  color: #ff2e69;
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
}
.icdm-after .icdm-link:hover {
  background: #ff2e69;
  color: #000;
}
