/* Test environment badge */
/* Just import this style sheet on a test environment to add a badge */
body {
  position: relative;
}


body::after {
    content: "TEST ENVIRONMENT";
    position: absolute;
    top: 50px;
    right: -50px;
    z-index: 9999;
    background-color: #E1E366;
    padding: 5px 50px;
    color: black;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: bold;
    transform: rotate(45deg);
    pointer-events: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.22) ;
} 