﻿
/* QA Environment Banner */
body::before {
    content: "⚠ QA ENVIRONMENT - FOR TESTING ONLY ⚠";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    background: magenta;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 6px;
    z-index: 10000;
    letter-spacing: 1px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    margin:0px 300px;
}
/* body {
    padding-top: 40px;  Prevent content overlap 
} */

/* QA Watermark */
body::after {
    content: "QA ENVIRONMENT";
    position: fixed;
    bottom: 40%;
    right: 0;
    font-size: 80px;
    color: rgba(255, 0, 255, 0.1);
    transform: rotate(-30deg);
    z-index: 0;
    pointer-events: none;
}
