/* TABLE SETTINGS (INAXHMI -> /plcviewer -> table) */
.plc-input-table > .plc-radio {
    display: inline-block;   
}

.plc-input-table > .plc-radio-label {
    width: 230px;
    min-height: 22px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    background-color: #ddd;
    border-radius: 4px;
    font-weight: normal;
}

.plc-input-table > .plc-radio:checked + .plc-radio-label {
    background-color: #5cb85c;
}

/* add new style settings here */

/* Syntax:
.my-class > .plc-radio {
     applies to all radio buttons 
}
.my-class > .plc-radio-label {
     applies to the labels next to the radio-buttons 
}

.my-class > .plc-radio:checked {
     applies to the checked radio button 
}
.my-class > .plc-radio:checked + .plc-radio-label {
     applies to the label directly after the checked radio button 
}
*/
