.commentator-confirm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.65);
}

.commentator-confirm-dialog {
  width: min(22rem, 100%);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border, #30363d);
  background: var(--surface, #161b22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.commentator-confirm-dialog__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.commentator-confirm-dialog__msg {
  margin: 0 0 1rem;
  color: var(--muted, #8b949e);
  font-size: 0.975rem;
  line-height: 1.45;
}

.commentator-confirm-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.commentator-confirm__ok--danger {
  background: var(--surface, #161b22);
  border-color: #da3633;
  color: #ff7b72;
}

.commentator-confirm__ok--danger:hover:not(:disabled) {
  background: rgba(248, 81, 73, 0.15);
  border-color: #f85149;
}
