.confirm-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: var(--scrim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-dialog-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 520px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px var(--shadow-lg);
  font-family: var(--font-mono);
}
.confirm-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-label);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes hlnk-spin { to { transform: rotate(360deg); } }
