.control.led {
    font-weight: 600;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3px 6px;
    transition: background .2s;
}

.control.led:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.control.led > .dot {
    width: 8px;
    height: 8px;
    margin-right: 4px;
    border-radius: 50%;
    background: rgb(34 34 34 / 0.7);
    flex: none;
}

.control.led.off > .dot {
    background: #bb0000;
}

.control.led.on > .dot {
    background: #006500;
}