/*
 * SeeNova DEV environment marker — SeeNova-only asset (never committed to eyetel-cloud).
 * Injected on every page via AdminConfiguration.CustomThemeCss in
 * appsettings.SeeNovaDev.json.
 *
 * Purpose: make the SeeNova-environment Duende STS impossible to mistake for the
 * eyetel-cloud Duende STS once it is reachable at web-dev.eyetelligence.bausch.com.
 * Layout-safe: uses position:fixed only, so it never shifts page content.
 */

/* Persistent diagonal corner ribbon, always visible on login and authenticated pages. */
body::before {
    content: "SEENOVA \00B7 DEV \2014 NOT EYETEL";
    position: fixed;
    top: 30px;
    right: -70px;
    width: 300px;
    transform: rotate(45deg);
    background: #b58900;                 /* solar amber */
    color: #002b36;                      /* solar base03 */
    font: 700 12px/26px system-ui, -apple-system, "Segoe UI", sans-serif;
    letter-spacing: .6px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .45);
    pointer-events: none;
}

/* Thin amber accent strip pinned to the top edge, reinforcing the environment cue. */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #b58900;                 /* solar amber */
    z-index: 1999;
    pointer-events: none;
}
