/* Test Environment Styles */
.environment-indicator {
    background-color: #ffc107;
    color: #212529;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.environment-indicator::before {
    content: "🟡 ";
}

.top-row {
    border-bottom: 3px solid #ffc107 !important;
}

/* Diagonal watermark across the page - repeating pattern */
body::before {
    content: "TEST ENVIRONMENT";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-size: 3rem;
    font-weight: bold;
    color: #ffc107;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    transform: rotate(-45deg);
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 10rem;
    text-align: center;
}

body::after {
    content: "TEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT\ATEST ENVIRONMENT";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffc107;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    white-space: pre;
    line-height: 8rem;
    text-align: center;
    letter-spacing: 2rem;
}
