/* =========================
   Estilos
========================= */

/* ===== SEMÁFORO ===== */

.cz-semaphore {
    width: 180px;
    margin: 30px auto;
    padding: 20px 15px;
    background: #111;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
    text-align: center;
}

.cz-light {
    width: 48px;
    height: 48px;
    margin: 12px auto;
    border-radius: 50%;
    background: #333;
    opacity: 0.25;
    transition: all .35s ease;
}

/* Colores base */
.cz-red    { background: #ff3b3b; }
.cz-yellow { background: #ffc107; }
.cz-green  { background: #28c76f; }

/* Activo */
.cz-light.active {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 0 18px currentColor;
}

/* Texto */

.cz-semaphore-text {
    /*margin-top: 15px;
    font-size: 15px;
    text-align: center;
    /*font-weight: 500;
    /*color: #fff; /* default */
    
    color: #ffffff;
    font-weight: 600;
    margin-top: 8px;
}

.cz-semaphore {
    animation: czFadeUp .4s ease-out;
}

@keyframes czFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cz-semaphore-detail {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
}

/* Colores sutiles según estado */
.cz-detail-rojo {
    border-left: 4px solid #ff3b3b;
}

.cz-detail-amarillo {
    border-left: 4px solid #ffc107;
}

.cz-detail-verde {
    border-left: 4px solid #28c76f;
}

.cz-text-rojo {
    color: #ffb3b3;
}

.cz-text-amarillo {
    color: #ffe08a;
}

.cz-text-verde {
    color: #9ff0c1;
}

/*.cz-text-verde,
/*.cz-text-amarillo,*/
/*.cz-text-rojo {*/
/*    color: inherit;*/
/*}*/

.cz-semaphore-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,.8);
}