/* PixPolish theme overlay — loaded AFTER dist/bundle.js so these rules win.
   We do not edit miniPaint's bundled CSS; branding lives here. */
:root { --pp-accent:#2563eb; --pp-accent-ink:#ffffff; }

/* Brand the logo in the submenu bar */
a.logo{
  font-weight:800 !important;
  letter-spacing:.2px;
  color:var(--pp-accent) !important;
  text-decoration:none !important;
}
a.logo::before{ content:"🖌 "; }

/* Accent line under the main menu bar to brand the workbench top */
nav.main_menu, #main_menu{
  border-bottom:3px solid var(--pp-accent);
}

/* Keep the About product name on-brand */
.about-name{ color:var(--pp-accent); font-weight:800; }

/* Discreet legal/attribution footer, fixed bottom-center over the editor */
#pp_footer{
  position:fixed; bottom:0; left:50%; transform:translateX(-50%);
  z-index:5; padding:2px 10px; border-radius:6px 6px 0 0;
  background:rgba(20,22,28,.72); color:#c9ced8;
  font:11px/1.5 system-ui,-apple-system,sans-serif; white-space:nowrap;
  pointer-events:auto;
}
#pp_footer a{ color:#9db4ff; text-decoration:none; }
#pp_footer a:hover{ text-decoration:underline; }
@media (max-width:640px){ #pp_footer{ font-size:10px; padding:1px 6px; } }
