/* progress.css — Bootstrap 4 progress bar dialog */
dialog.progress-dialog {
  border: none;
  border-radius: 6px;
  padding: 1.5rem;
  min-width: 360px;
  max-width: 480px;
  box-shadow: 0 0 0 9999px var(--overlay-bg);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
dialog.progress-dialog::backdrop { background: transparent; }
dialog.progress-dialog h4 { margin: 0 0 0.75rem; font-size: 1rem; font-weight: 600; }
dialog.progress-dialog .progress-message { margin: 0 0 1rem; color: var(--text-primary); }
dialog.progress-dialog .progress { height: 20px; border-radius: 4px; }
dialog.progress-dialog .progress-bar {
  background: var(--accent);
  transition: width 0.3s ease;
  font-size: 12px;
  line-height: 20px;
}
