/* Rules every page needs, whatever it is.

   Linked by all three page layouts. Keep it tiny: anything that belongs to one
   feature belongs in that feature's file, declared by the page or widget that
   uses it. */

/* Environment ribbon (see partials/dev_ribbon.html). A 110px square pinned
   to the top-right corner clips a 150px band rotated 45deg through it, so
   the band is cut off cleanly at both page edges. The z-index sits above
   Tabler's modal (1055) and tooltip (1080), so the marker is never hidden
   by a dialog, and `pointer-events: none` keeps it from eating clicks on
   whatever the corner overlaps. */
.dev-ribbon {
    position: fixed;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    z-index: 1090;
    pointer-events: none;
}
.dev-ribbon span {
    position: absolute;
    top: 26px;
    right: -34px;
    width: 150px;
    padding: .25rem 0;
    transform: rotate(45deg);
    background-color: var(--tblr-blue, #206bc4);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}
