/* WP integration fixes to keep Antigravity look consistent */

html, body {
  background: var(--bg-dark) !important;
  color: var(--text-primary) !important;
}

/* Some WP/admin CSS can reset typography */
body {
  font-family: var(--font-family) !important;
  line-height: 1.5;
}

/* Ensure SVG/icons don't blow up due to theme/plugin CSS */
svg.icon {
  width: 20px;
  height: 20px;
}

/* Keep header from being overlapped by admin bar */
body.admin-bar .header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}
