/* Profit Rocket sandbox banner — shared across Desk, public pages, and ecosystem SPAs.
   Inline styles set background-color + color from API response; this file only handles
   layout. */
.profit-rocket-sandbox-banner {
  /* Fixed positioning anchors the banner to the viewport top regardless of
     the parent's flex/grid layout. position: sticky inside Frappe v16 Desk's
     body-level layout grid trapped the banner in a single column track. */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100000;
  padding: 6px 12px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  user-select: none;
}
