/* Restore WordPress's reserved toolbar row when a canvas theme removes it.
   The ecosystem bar remains in flow, directly beneath that native toolbar. */
html:has(body.admin-bar > abibitumi-id-bar) { margin-top: 32px !important; }
body.admin-bar:has(> abibitumi-id-bar) #wpadminbar { top: 0 !important; }
/* Some themes reset the primary toolbar list to full width, wrapping the
   account controls onto the website. Keep both native groups in one row. */
body:has(> abibitumi-id-bar) #wp-toolbar { display: flex; }
body:has(> abibitumi-id-bar) #wp-admin-bar-root-default {
  display: flex; flex: 1 1 auto; min-width: 0; width: auto; float: none;
}
body:has(> abibitumi-id-bar) #wp-admin-bar-root-default > li { min-width: 0; }
body:has(> abibitumi-id-bar) #wp-admin-bar-root-default > li > .ab-item {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
body:has(> abibitumi-id-bar) #wp-admin-bar-top-secondary { flex: 0 0 auto; float: none; }
@media (max-width: 782px) {
  html:has(body.admin-bar > abibitumi-id-bar) { margin-top: 46px !important; }
}
