.itemlist{
    margin: auto;
    height: 100%;
    width: 100%;
    margin-top: 20px;
}

.itemlist .item{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    min-height: 25px;
    width: 100%;
    border: solid black 1px;
}

.itemlist .item .id{
    overflow: hidden;
    width: 50px;
    text-align: center;
    background-color: #458a4e;
    user-select: none;
}

.itemlist .item .craftable{
    overflow: hidden;
    width: 50px;
    text-align: center;
    background-color: #456b8a;
    user-select: none;
}

.itemlist .item .name{
    overflow: hidden;
    width: 275px;
    text-align: center;
    background-color: #a86424;
    border-left: solid black 2px;
}

.itemlist .item .type{
    overflow: hidden;
    width: 100px;
    text-align: center;
    background-color: #361f2d;
    border-left: solid black 2px;
}

.itemlist .item .location{
    overflow: hidden;
    width: 225px;
    text-align: center;
    background-color: #992e2e;
    border-left: solid black 2px;
}

.searchBar {
    border: 0px;
    background-color: #363636;
    color: white;
    width: 95%;
    height: 19px;
    margin: auto;
}