
#ledIndicators {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    position: fixed;
    top: 23px;
    left: 15px;
    z-index: 100;
}

.led-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 28px;
    margin: 0;
    padding: 0;
}

.led-label {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.7);
}

.led-light {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: background 0.05s ease, box-shadow 0.05s ease, filter 0.05s ease;
    contain: paint;
}

.led-light.active {
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 8px #00ff88;
    animation: ledFlash 0.15s ease-out;
    contain: paint;
}

.led-light.active.red {
    background: #ff3333;
    border-color: #ff3333;
    box-shadow: 0 0 8px #ff3333;
    animation: none;
    contain: paint;
}


@keyframes ledFlash {
    0% {
        box-shadow: 0 0 6px #00ff88;
        opacity: 0.8;
    }

    50% {
        box-shadow: 0 0 12px #00ff88;
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 8px #00ff88;
        opacity: 1;
    }
}

