/* The mark becomes a background image: ours, and carrying no name at all, which is also the
   correct treatment for a logo sitting immediately beside the word it would otherwise repeat.
   Left as an <img>, its alt text makes "Gatus" the first thing a screen reader announces for
   this page's home link.

   INLINED, not fetched, and that is the point rather than an optimisation. Pulling the mark from
   mobsession.ai would make this page's own branding depend on a service it exists to report on,
   so the one morning the website is down would also be the morning the status page renders
   broken. 517 bytes is a cheap price for a page that looks like itself during an outage. It is
   the same file the site publishes at /icon.svg; re-inline it if the brand mark changes. */
header a img { display: none !important; }
header a > div:first-child {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIj4KICA8cmVjdCB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHJ4PSI3IiBmaWxsPSIjMTQxNDFhIi8+CiAgPHBhdGggZD0iTTE0IDYuNSBMMTcuMDYgMTIuNDQgTDIzIDE1LjUgTDE3LjA2IDE4LjU2IEwxNCAyNC41IEwxMC45NCAxOC41NiBMNSAxNS41IEwxMC45NCAxMi40NCBaIiBmaWxsPSIjZDk3NzU3Ii8+CiAgPHBhdGggZD0iTTI0LjUgMi42IEwyNi4zMzYgNi4xNjQgTDI5LjkgOCBMMjYuMzM2IDkuODM2IEwyNC41IDEzLjQgTDIyLjY2NCA5LjgzNiBMMTkuMSA4IEwyMi42NjQgNi4xNjQgWiIgZmlsbD0iI2E3OGJmYSIvPgogIDxwYXRoIGQ9Ik04LjUgMTkuOSBMMTAuMDY0IDIyLjkzNiBMMTMuMSAyNC41IEwxMC4wNjQgMjYuMDY0IEw4LjUgMjkuMSBMNi45MzYgMjYuMDY0IEwzLjkgMjQuNSBMNi45MzYgMjIuOTM2IFoiIGZpbGw9IiM1ZWM4YjgiLz4KPC9zdmc+Cg==") center / contain no-repeat;
}

/* The line under the wordmark is upstream copy ("System Monitoring Dashboard"), hardcoded in the
   component rather than configurable. The heading below it already says what this page is. */
header a h1 + p { display: none !important; }

/* The whole footer, which holds the credit and a link to the project's repository and nothing
   else. Hiding the element rather than picking the two links out of it is both simpler and
   sturdier: no :has(), no href matching, and no empty 49px bordered strip left sitting under the
   page where the credit used to be. If a future version puts something worth showing down there,
   the version-bump check in README.md is what notices. */
footer { display: none !important; }
