/* 1. Hide the "Back to Dashboard" button */
button:has(svg.lucide-arrow-left) {
  display: none !important;
}

/* 2. Hide the Top Gatus Logo and Text */
.gap-4:has(img[alt="Gatus"]) {
  display: none !important;
}

/* 3. Hide the entire Footer (Powered By + GitHub Logo) */
/* This targets the outer container holding the #social ID so it removes the empty padding too */
.container:has(#social) {
  display: none !important;
}
