.mod-showcase-state .light {
    background-color: #111;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

/* Farben & Glow */
.mod-showcase-state .light.red.active    { background-color: #ff0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.7); }
.mod-showcase-state .light.yellow.active { background-color: #ffcc00; box-shadow: 0 0 15px rgba(255, 204, 0, 0.7); }
.mod-showcase-state .light.green.active  { background-color: #00aa00; box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); }

/* Puls-Animation */
.pulse { animation: light-pulsate 2s infinite ease-in-out; }

@keyframes light-pulsate {
    0%   { opacity: 1; transform: scale(1); }
    50%  { opacity: 0.7; transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}

.state-description {
    word-wrap: break-word;
    line-height: 1.4;
}