.deletion-card {
  max-width: 600px;
}

.deletion-notice,
.deletion-details {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.deletion-details {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.deletion-notice h2,
.deletion-details h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.deletion-notice p,
.deletion-details p {
  margin: 0.5rem 0 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

.required-marker {
  color: #dc2626;
}

.deletion-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.25rem 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}

.deletion-confirmation input {
  width: auto;
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.verification-note {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.btn-delete {
  background: #b91c1c;
}

.btn-delete:hover {
  background: #991b1b;
}

.btn-delete:disabled {
  background: #fca5a5;
}

@media (prefers-color-scheme: dark) {
  .deletion-notice {
    background: #172554;
    border-color: #1e40af;
  }

  .deletion-details {
    background: #0f172a;
    border-color: #334155;
  }

  .verification-note {
    color: #cbd5e1;
  }
}
