/* =============================================================================
   AGT VAERS Demo Theme — theme-base.css
   Minimal global reset. Scoped so it ONLY affects the .agt-vaers-demo wrapper.
   Does NOT override WordPress admin bar or other plugins.
   ============================================================================= */

/* Remove default WordPress block editor body padding */
body.agt-vaers-theme {
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  overflow-x: hidden;
}

/* Prevent WordPress admin bar from overlapping the fixed prototype notice */
body.admin-bar .agt-vaers-demo .agt-site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .agt-vaers-demo .agt-site-header {
    top: 46px;
  }
}

/* Remove default link outline flash on some browsers */
.agt-vaers-demo a:not(:focus-visible) {
  outline: none;
}

/* Prevent WordPress block editor styles leaking in */
.agt-vaers-demo .wp-block,
.agt-vaers-demo .wp-caption,
.agt-vaers-demo .alignleft,
.agt-vaers-demo .alignright,
.agt-vaers-demo .aligncenter {
  all: unset;
}

/* ── Print baseline ─────────────────────────────────────────────────────── */
@media print {
  body.agt-vaers-theme {
    background: #fff;
  }
  .admin-bar { display: none !important; }
  #wpadminbar { display: none !important; }
}
