/* 1) Hide the stock SVG logo */
#navbar > .item:first-child a[aria-label] img[alt="logo"] {
  display: none !important;
}

/* 2) Make the first link a sized box for our logo */
#navbar > .item:first-child a[aria-label] {
  display: inline-block !important;
  position: relative !important;
  width: 160px;              /* tweak */
  height: 28px;              /* tweak */
  vertical-align: middle;
  padding: 0 !important;     /* avoid extra whitespace */
}

/* 3) Paint our logo as a pseudo-element positioned inside that box */
#navbar > .item:first-child a[aria-label]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/ProEmTech_Logo.png") no-repeat center center;
  background-size: contain;
}
