﻿.grid-container {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 3px;
    justify-items: center;
    align-items: center;
}

.grid-header {
    grid-row: 1;
    grid-column: 1 / span all;
    font-weight: bold;
    font-size: 13px;
}

.grid-item {
    margin-left: 5px;
    margin-right: 5px;
}

.item-title {
    font-weight: bold;
}

.checkBoxLabel {
    font-weight: bold;
    white-space: nowrap;
}

/* For Testing */
.testBorders {
    border: 1px solid red;
    background-color: lightblue;
}