.deletePaste {
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  font-size: 0.875rem;
  line-height: 1;
  color: inherit;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  z-index: 10;
}

.group:hover .deletePaste,
.card:hover .deletePaste {
  opacity: 0.3;
}

.deletePaste:hover {
  opacity: 1 !important;
  background-color: oklch(var(--b3, 0.3));
}

.preview-link {
  text-decoration: none;
  color: inherit;
}

.preview-link:hover {
  opacity: 0.9;
}
