/* Floating shutdown warning banner injected via CSS only */
body:before {
  content: "IMPORTANT - This server closes 1st April 2026, please migrate your account ASAP";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: #d60000; /* bright red */
  color: #ffffff; /* white text */
  font-weight: bold;
  font-size: 16px;
  text-align: center;

  padding: 10px 15px;
  z-index: 99999; /* above all Mastodon UI elements */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Push the full UI down so it doesn't hide under the banner */
body,
body.app-body {
  padding-top: 50px !important;
}

