.appShell .headerLeft > div{min-width:0}
.reportHelpTitleRow{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.reportHelpTitleRow h1{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.reportHelpBtn{
  width:30px;
  height:30px;
  border:1px solid var(--brand-accent,#2563eb);
  background:var(--brand-accent,#2563eb);
  color:#fff;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  flex:0 0 auto;
  box-shadow:0 6px 14px rgba(37,99,235,.2);
}
.reportHelpBtn[hidden]{display:none}
.reportHelpBtn:hover{
  background:var(--brand-accent-dark,#1d4ed8);
  border-color:var(--brand-accent-dark,#1d4ed8);
}
.reportHelpBtn:focus-visible{
  outline:3px solid var(--brand-accent-soft,#dbeafe);
  outline-offset:2px;
}
.reportHelpOverlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.58);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:125;
  padding:18px;
}
.reportHelpOverlay.open{display:flex}
.reportHelpPanel{
  width:min(880px,calc(100vw - 28px));
  max-height:calc(100vh - 48px);
  overflow:auto;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  box-shadow:0 24px 70px rgba(15,23,42,.28);
  padding:20px;
  color:#0f172a;
}
.reportHelpHeader{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:16px;
}
.reportHelpHeader h2{margin:0;font-size:22px}
.reportHelpHeader p{margin:4px 0 0 0;color:#64748b}
.reportHelpClose{
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:10px;
  padding:8px 11px;
  cursor:pointer;
  font-weight:800;
}
.reportHelpIntro{
  margin:0 0 16px 0;
  color:#334155;
  line-height:1.55;
}
.reportHelpGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.reportHelpSection{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:15px;
  background:#fff;
}
.reportHelpSection h3{
  margin:0 0 10px 0;
  font-size:16px;
}
.reportHelpSection ul{
  margin:0;
  padding-left:18px;
}
.reportHelpSection li{
  margin:7px 0;
  line-height:1.45;
  color:#334155;
}
.reportHelpSection.wide{grid-column:1/-1}
.reportHelpBasedOn{
  margin-top:14px;
  border-radius:12px;
  padding:12px 14px;
  background:#f8fafc;
  color:#475569;
  font-size:13px;
  line-height:1.45;
}
@media(max-width:760px){
  .reportHelpGrid{grid-template-columns:1fr}
  .reportHelpSection.wide{grid-column:auto}
  .reportHelpBtn{width:28px;height:28px;font-size:14px}
}
