/**
 * Environment banner — fixed bottom bar, only loaded on staging / training
 * (the library is attached by mvsd_sandbox_page_top, which only fires off-prod).
 * Bottom-fixed to avoid any interaction with the site's sticky masthead/TOC.
 */

/* Keep the very bottom of page content clear of the fixed bar. */
body {
  padding-bottom: 2.6rem;
}

.mvsd-env-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

/* Staging — amber caution stripes, clearly not the brand. */
.mvsd-env-banner--staging {
  background: repeating-linear-gradient(
    45deg,
    #b45309 0,
    #b45309 16px,
    #7c2d12 16px,
    #7c2d12 32px
  );
}

/* Training — WWU deep navy, matching the sandbox's blue/silver identity. */
.mvsd-env-banner--training {
  background: #002a5c;
}
