/* DigiNepal brand override — hide the Stalwart wordmark SVG paths and
   render our own logo as a background image on the same box. */
svg[aria-label='DigiNepal Logo'] > path { display: none !important; }
svg[aria-label='DigiNepal Logo'] {
  background: url('diginpl-logo.svg') no-repeat left center !important;
  background-size: contain !important;
  min-width: 200px !important;
  height: 34px !important;
}
/* Just in case aria-label didn't get patched everywhere (some older
   bundles hardcode differently) — target the sizing classes as well. */
svg.h-7.w-auto[viewBox] > path { display: none !important; }
svg.h-7.w-auto[viewBox] {
  background: url('diginpl-logo.svg') no-repeat left center !important;
  background-size: contain !important;
  min-width: 200px !important;
  height: 34px !important;
}
