/* Title + helper button */
.pa-titlebar {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pa-help-btn {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #1f6feb;              /* brand blue */
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  cursor: pointer;
}
.pa-help-btn:focus-visible {
  outline: 2px solid #1f6feb;
  outline-offset: 2px;
}

/* Modal overlay + dialog (matches the mock you liked) */
.pa-help-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: grid;
  place-items: center;
  z-index: 1000;
}

.pa-help-dialog {
  width: min(560px, 92vw);        /* centered, wider version */
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  position: relative;
}

.pa-help-close {
  position: absolute;
  top: 8px; right: 10px;
  border: none; background: transparent;
  font-size: 26px; line-height: 1;
  cursor: pointer; color: #666;
}
.pa-help-close:focus-visible { outline: 2px solid #1f6feb; outline-offset: 2px; }

.pa-help-list { margin: 10px 0 14px; padding-left: 18px; }
.pa-help-list > li { margin: 6px 0; }
.pa-help-list ul { margin: 6px 0 0 14px; }

.pa-help-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn-link { color: #1f6feb; text-decoration: none; }
.btn-link:hover { text-decoration: underline; }


.pa-help-overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

body.pa-help-open {
  overflow: hidden;
}

