/*body{*/
    /*font-family: arial;*/
    /*font-size: 14px;*/
    /*line-height: 20px;*/
    /*font-weight: 400;*/
    /*color: #3b3b3b;*/
    /*background-color: #2b2b2b;*/
/*}*/

#grid-container{
    padding: 10px;
    border: solid 1px #20558a;
    border-radius: 5px;
    /*justify-content: left;*/

    font-size: .9rem;
}

#grid-pool{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /*float: left;*/

    width: auto;
    min-height: 100px;
    /*border: solid 1px #ccc;*/
    padding: 20px;
    border-spacing: 10px;
    justify-content: left;
}

.grid-wrapper{
    position: relative;
    margin: 0 auto;
    width: 100%;
    /*padding: 10px;*/
    /*max-width: 800px;*/
    /*overflow-x: scroll;*/
    border: solid 1px #20558a;
}

.grid-wrapper-scroll{
    overflow-x: auto;
}

.grid-table{
    display: table;
    /*margin: 0 0 40px 0;*/
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-spacing: 1px;
}

.grid-target{
    display: table-row;
    font-family: tahoma;
    font-weight: bold;
    font-size: .9em;
    /*color: #ffffff;*/
    /*background: #ea6153;*/
}

.grid-target-cell{
    display: table-cell;
    height: 30px;
    border: dashed 1px #ccc;
    text-align: center;
}

.grid-item{
    position: relative;
    /*float: left;*/
    height: 35px;
    /*margin: -1px;*/

    background-color: #20558a;
    border: 1px solid #20558a;
    border-spacing: 10px;

    line-height: 35px;
    text-align: center;
    color: #FFFFFF;

    font-size: .8rem;

}

.grid-item:hover{
    cursor: default;
}

/*.grid-item:active{*/
    /*cursor: grabbing;*/
/*}*/

/*.grid-item-mousedown{*/
    /*cursor: grabbing;*/
/*}*/

/*.grid-item-mouseup{*/
    /*cursor: grab;*/
/*}*/

.grid-item-selected{
    width: 100%;
    margin: -1px;
}

.grid-item-unselected{
    width: auto;
    min-width: 100px;
    /*margin: 5px;*/
}

.grid-header{
    display: table-row;
    font-family: tahoma;
    font-weight: bold;
    font-size: .9em;
    /*color: #ffffff;*/
    background: #b0cef2;
}

.grid-header-cell{
    text-align: center;
}

.grid-row{
    display: table-row;
    background: #e7e7e7;
}

.grid-row:nth-of-type(even){
    background: #f1f1f1;
}

.grid-row:hover{
    background: #dbe8f5;
    cursor: pointer;
}

.grid-row-inactive{
    display: table-row;
    background: #e7e7e7;
}

.grid-row-inactive:nth-of-type(even){
    background: #f1f1f1;
}

.grid-cell{
    display: table-cell;
    padding: 10px 15px;
    white-space: nowrap;
    /*text-align: center;*/
    /*font-size: 14px;*/
}

.grid-label{
    padding: 0 10px;
    white-space: nowrap;
    /*font-size: .7pem;*/
}

.grid-label:hover{
    cursor: default;
}

.grid-heading{
    font-family: tahoma;
    font-weight: bold;
    padding-bottom: 3px;
    white-space: nowrap;
    /*text-align: center;*/
}

.grid-select{
    padding: 5px;
    /*font-size: 1.2rem;*/
    /*border: 0;*/
    /*border-radius: 0;*/
    /*-webkit-appearance: none;*/
    /*-webkit-border-radius: 0px;*/
}

.grid-center{
    text-align: center;
    vertical-align: middle;
}

.grid-center-v{
    vertical-align: middle;
}

.grid-center-h{
    text-align: center;
}