
/* V938 unified network / cached data warning - non-invasive overlay */
.nm-cache-warning{
  position:fixed;
  left:max(14px, env(safe-area-inset-left));
  right:max(14px, env(safe-area-inset-right));
  top:calc(12px + env(safe-area-inset-top));
  z-index:2147482500;
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:13px 16px;
  border:1px solid rgba(190,131,30,.22);
  border-radius:16px;
  background:linear-gradient(180deg,#fff8e8 0%,#fff3d7 100%);
  box-shadow:0 10px 28px rgba(72,45,7,.13);
  color:#8a5608;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.25;
  pointer-events:auto;
}
.nm-cache-warning.show{display:flex;}
.nm-cache-warning__main{display:flex;align-items:center;gap:12px;min-width:0;}
.nm-cache-warning__icon{
  width:32px;height:32px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;background:#fff0c6;color:#a76500;font-size:20px;
}
.nm-cache-warning__title{
  font-size:15px;font-weight:800;letter-spacing:-.01em;margin:0 0 3px;
  white-space:normal;
}
.nm-cache-warning__sub{
  font-size:14px;font-weight:500;opacity:.95;margin:0;
}
.nm-cache-warning__actions{display:flex;align-items:center;gap:8px;flex:0 0 auto;}
.nm-cache-warning__refresh{
  border:0;border-radius:12px;background:#fff;color:#98630d;
  font-weight:800;font-size:14px;padding:9px 13px;
  box-shadow:inset 0 0 0 1px rgba(190,131,30,.18);
}
.nm-cache-warning__close{
  border:0;background:transparent;color:#98630d;
  font-size:20px;line-height:1;padding:6px;opacity:.75;
}
@media (max-width:640px){
  .nm-cache-warning{top:calc(8px + env(safe-area-inset-top));left:10px;right:10px;padding:12px;}
  .nm-cache-warning__title{font-size:14px;}
  .nm-cache-warning__sub{font-size:13px;}
  .nm-cache-warning__refresh{padding:8px 10px;font-size:13px;}
}
@media print{.nm-cache-warning{display:none!important;}}

/* V938 small Live/Cached sync label */
.nm-sync-label{
  position:fixed;
  right:max(14px, env(safe-area-inset-right));
  bottom:calc(12px + env(safe-area-inset-bottom));
  z-index:2147482000;
  padding:7px 10px;
  border-radius:999px;
  font:700 12px/1.2 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  box-shadow:0 8px 22px rgba(15,23,42,.12);
  pointer-events:none;
  opacity:.94;
}
.nm-sync-label.live{background:#dcfce7;color:#166534;border:1px solid rgba(22,101,52,.16);}
.nm-sync-label.cached{background:#fef3c7;color:#92400e;border:1px solid rgba(146,64,14,.16);}
@media (max-width:640px){
  .nm-sync-label{right:10px;bottom:calc(8px + env(safe-area-inset-bottom));font-size:11px;}
}
@media print{.nm-sync-label{display:none!important;}}

/* V938 hide live synced label */
.nm-sync-label{display:none!important;}
