/* Environment indicator for non-production environments */
.environment-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    z-index: 9999;
    pointer-events: none;
}

.environment-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 0;
    background: #dc3545;
    transform: rotate(-45deg);
    transform-origin: top left;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.environment-indicator::after {
    content: attr(data-env);
    position: absolute;
    top: 35px;
    left: -50px;
    background: #dc3545;
    color: white;
    padding: 10px 70px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}
