/* General Settings (do not change) */
.plc-button-status {
    display: none;
}

/* TABLE SETTINGS (INAXHMI -> /plcviewer -> table) */

.plc-input-table > .plc-button {
    display: inline-block;
    width: 230;
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
    font-weight: normal;
    border: 1px solid transparent;
    box-shadow: inset 0 -3px 5px rgba(0,0,0,.125);
}

.plc-input-table > .plc-button:active {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.plc-input-table > .plc-button-status:checked ~ .plc-button {
    background-color: #5cb85c;
}

/* add new style settings here */

/* Syntax:

.my-class {
    div containing all elements
}

.my-class > .plc-button {
    applies to button 
}

.my-class > .plc-button-status:checked ~ .plc-button {
    applies to button when Value === trueValue
}
*/