.patient-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.delete-patient-btn {
  border: 1px solid #eed2d2;
  background: #fff;
  border-radius: 6px;
  color: var(--red);
  padding: 6px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.delete-patient-btn:hover { background: #fff5f5; }
.delete-patient-btn:disabled { opacity: .55; cursor: wait; }

@media (max-width: 640px) {
  .patient-actions { display: grid; grid-template-columns: 1fr auto; }
  .delete-patient-btn { min-height: 43px; }
}
