/* HIDE HEADER TEXT */
#global .text-3xl { display: none !important; }
div[class*="text-3xl"] { display: none !important; }

/* LAYOUT: FORCE LOGO ROW */
#global > .mb-2 > .flex.flex-wrap > div:first-child { display: none !important; }

/* COLUMN: FULL WIDTH & RIGHT ALIGN */
#global > .mb-2 > .flex.flex-wrap > div:last-child {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
  justify-content: flex-end !important;
  text-align: right !important;
  overflow: visible !important; /* Fix truncation */
  padding-right: 50px !important; /* Safe zone */
}

/* WRAPPER (A or DIV): UNCONSTRAIN */
#global > .mb-2 > .flex.flex-wrap > div:last-child > * {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: none !important; 
  max-height: none !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  display: inline-flex !important;
}

/* IMAGE: BIGGER */
img[alt="Gatus"] {
  height: 250px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 100px !important;
  min-width: 100px !important;
  object-fit: contain !important;
  object-position: right center !important;
}

/* DARK MODE SWAP */
html.dark #global img[alt="Gatus"] {
  content: url("https://alpha.factmachine.com/logo_light.svg");
}

/* MOBILE SPECIFIC OVERRIDES */
@media (max-width: 640px) {
  #global > .mb-2 > .flex.flex-wrap > div:last-child {
     padding-right: 20px !important;
  }
  img[alt="Gatus"] {
    height: 150px !important;
    max-width: 90vw !important; 
  }
}
