/* Techex nav-logo override for Documenso 2.13.
   The nav logo is an inline <svg viewBox="0 0 2248 320" fill=currentColor> baked into
   the JS bundle (NOT org/team branding). The wrapping link's href varies by context
   (/ personal, /t/<team> team), so target the logo by its SVG, not the href.
   CSP blocks injected <style> but allows a same-origin <link> (style-src-elem 'self');
   injected via nginx sub_filter. Black logo + invert in dark mode = Documenso's scheme. */
@media (min-width:768px){
  header a:has(> svg[viewBox="0 0 2248 320"]) svg{display:none !important}
  header a:has(> svg[viewBox="0 0 2248 320"]){
    display:inline-block !important;
    width:120px;height:24px;
    background:url("/tx-logo.png") left center/contain no-repeat;
  }
  html.dark header a:has(> svg[viewBox="0 0 2248 320"]){filter:invert(1)}
}
