/* HARD RESET for icons inside custom admin bar user menu */
/* Neutralizes WordPress/Neve theme CSS that breaks flexbox layout */

#custom-admin-bar-root svg {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;

  transform: none !important;

  margin: 0 !important;
  padding: 0 !important;

  display: inline-block !important;
  flex: 0 0 auto !important;
}

/* Ensure the button/link is a real flex row with spacing */
#custom-admin-bar-root button,
#custom-admin-bar-root a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  white-space: nowrap !important;
}

/* Keep the username from getting squeezed under icons */
#custom-admin-bar-root button > span,
#custom-admin-bar-root a > span {
  display: inline-block !important;
  flex: 0 0 auto !important;
}
