.boards {
    z-index: 10;
    background: #222;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: left;
    align-content: flex-start;
    flex-wrap: wrap;
}

.boardsSeparator {
    z-index:11;
    display: flex;
    width: 100%;
    height: 1px;
    background: #777;
    border-left: 10px solid #222;
    border-right: 10px solid #222;
    box-sizing: border-box;
    user-select: none;
    min-width:300px;
}

.boardsUnused {
    z-index: 10;
    height: 100%;
    background: #222;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: left;
    align-content: flex-start;
    flex-wrap: wrap;
}

.boardsText {
    z-index:10;
    height: 20px;
    justify-content: left;
    align-items:flex-end;
    width: 100%;
    display: flex;
    background: #222;
    font-family: tahoma;
    font-weight: bold;
    font-size: 10px;
    color: #aaa;
    padding: 4px 0px 0px 20px;
    user-select: none;
    box-sizing: border-box;
}

.board {
    display:flex;
    position:relative;
    flex-direction: column;
    height: 110px;
    padding: 10px 10px 0px 10px;
    border:3px solid transparent;
    background: #222;
    box-sizing: border-box;
}

.board:hover{
    background: #333;
}

.boardselected {    
    background: #555 !important;
    border:solid 3px #79c9dd !important;
}

.boardname {
    display:flex;
    position:relative;
    width:100%;
    color:#ccc;
    font-family: "Tahoma";
    font-size:10pt;
    font-weight:bold;
    padding:2px;
    user-select:none;
    overflow:hidden;
    white-space:nowrap;
    justify-content: center;
}

.boardimgcontainer{
    display:flex;
    flex: 0 0 75px;
    position:relative;  
    user-select: none;
}

.boardimg {
    display:flex;
    background: #fff;
    user-select: none;
}

.boardselect {
    background: #111;
    font-family: tahoma;
    font-weight: bold;
    font-size: 12px;
    color: #ddd;
    border: 0px;
    height:16px;
    margin-top: 3px;
    margin-left:3px;
}

.boardselect option {
    background: #333;
    font-family: tahoma;
    font-weight: bold;
    font-size: 12px;
    color: #ddd;
    border: 0px;
}

.boardselect:hover {
    background: #555;
}

.boardselect:focus {
    color: #fff;
    outline: none;
}