.config-grid {
    display: grid;
    justify-items: stretch;
    align-items: stretch;
    border: 1px solid #f3f3f3;
}

.config-grid-row {
    display: grid;
    max-height: 47px;
    grid-column-gap: 5px;
    justify-items: stretch;
    align-items: stretch;
    border-top: 1px solid #f3f3f3;
    padding: 5px;
    text-align: center;
    font-size: 12px;
}

.config-grid-header {
    background: url('../../img/lightPattern.png');
    border-top: none;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 999;
}

.config-grid-row-label {
    display: table;
    height: 100%;
}

.config-grid-row-label div {
    display: table-cell;
    vertical-align: middle;
}

.config-grid-row-item {
    margin: auto;
}