/* Private share reader: deliberately isolated from the inventory application's modal system. */
#internalShareViewer{
  width:100vw;height:100dvh;max-width:none;max-height:none;margin:0;padding:0;
  border:0;background:var(--bg,#eceadf);color:var(--ink,#23211b);overflow:hidden;
}
#internalShareViewer::backdrop{background:rgba(35,30,18,.42);backdrop-filter:blur(3px)}
.isv-shell{display:grid;grid-template-rows:auto minmax(0,1fr);height:100dvh}
.isv-header{
  min-height:64px;display:flex;align-items:center;gap:12px;padding:8px 24px;
  background:var(--surface,#fff);border-bottom:1px solid var(--line,#e3ddcf);
}
.isv-back,.isv-browser{
  min-width:44px;min-height:44px;border:0;border-radius:10px;background:transparent;
  color:var(--ink,#23211b);display:inline-flex;align-items:center;justify-content:center;
  font:700 var(--type-control,16px)/1 "Hanken Grotesk",system-ui,sans-serif;text-decoration:none;
}
.isv-back:hover,.isv-browser:hover{background:var(--surface-2,#f6f3ea)}
.isv-back svg{width:22px;height:22px}
.isv-title{min-width:0;flex:1;font:800 16px/1.2 "Archivo",system-ui,sans-serif;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.isv-browser{gap:8px;padding:0 12px;white-space:nowrap}
.isv-browser svg{width:17px;height:17px}
.isv-frame{width:100%;height:100%;border:0;background:var(--surface,#fff)}
@media (max-width:899px){
  .isv-browser span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
  .isv-browser{padding:0}
}