.admin-delete-registration {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  border: 1px solid rgba(239, 68, 68, .5);
  border-radius: .55rem;
  background: rgba(127, 29, 29, .14);
  color: #fca5a5;
  padding: .42rem .7rem;
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.admin-delete-registration:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 113, 113, .9);
  background: rgba(127, 29, 29, .28);
}

.admin-delete-registration:focus-visible {
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}

.admin-delete-registration:disabled {
  cursor: wait;
  opacity: .55;
  transform: none;
}

.admin-delete-registration svg {
  width: .95rem;
  height: .95rem;
  pointer-events: none;
}

@media (max-width: 720px) {
  .admin-delete-registration {
    min-height: 2.35rem;
    padding: .5rem .78rem;
  }
}
