html {
  font-size: 90%;
}


/* Estilos para el ribbon de ambiente */
.corner-ribbon {
    width: 200px;
    background: #e43;
    position: fixed;
    top: 25px;
    left: -50px;
    /* Cambiar a right para la derecha */
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;
    color: #f0f0f0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    z-index: 9999;
    pointer-events: none;
    /* Para que puedas hacer clic a través de ella */
    font-weight: bold;
    opacity: 0.8;
}

/* Colores dinámicos según entorno */

.env-local { /* Verde para Local */
    background: #28a745;
}
.env-qa { /* Amarillo para QA */
    background: #ffc107;
    color: #333;
}
.env-stag {
    background: #fd7e14;
}
