/* Report overlay (full-screen prospect report view).
   Extracted from the original inline <style> block 3. */

#report-overlay{ position:fixed; inset:0; z-index:100000; display:none; flex-direction:column; background:#EDE7DA; }
#report-overlay.open{ display:flex; }
#report-bar{ flex:0 0 auto; height:56px; display:flex; align-items:center; justify-content:space-between; padding:0 18px; background:var(--report-bar-bg); color:var(--report-bar-text); box-shadow:0 2px 14px rgba(15,76,69,.25); font-family:'Libre Franklin',system-ui,sans-serif; }
#report-bar .rb-left{ display:flex; align-items:center; gap:10px; font-size:15px; }
#report-bar .rb-left b{ font-weight:600; }
#report-bar .rb-note{ color:#C9A24B; font-size:13px; }
#report-bar #rb-close{ background:rgba(255,255,255,.14); color:#fff; border:0; border-radius:8px; padding:9px 16px; font-size:13px; font-weight:600; cursor:pointer; font-family:inherit; }
#report-bar #rb-close:hover{ background:rgba(255,255,255,.26); }
#report-scroll{ flex:1 1 auto; min-height:0; overflow-y:auto; overflow-x:hidden; -webkit-overflow-scrolling:touch; background:#EDE7DA; }
#reportFrame{ display:block; width:100%; height:100%; border:0; background:#EDE7DA; }
#report-loading{ position:absolute; inset:56px 0 0 0; display:none; flex-direction:column; align-items:center; justify-content:center; gap:16px; background:#EDE7DA; color:#0F4C45; font-family:'Libre Franklin',system-ui,sans-serif; }
#report-loading .rl-spin{ width:38px; height:38px; border:3px solid rgba(15,76,69,.18); border-top-color:#0F4C45; border-radius:50%; animation:rlspin .8s linear infinite; }
@keyframes rlspin{ to{ transform:rotate(360deg); } }
#report-loading #rl-text{ font-size:14px; letter-spacing:.02em; }

