*,
body {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: Arial, sans-serif;
    user-select: none;
}

.contentContainer {
    color: white;
    visibility: hidden;
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

#upgrades-container {
    float: left;
    width: 20%;
    height: 42.4%;
    padding: 20px;
    background-color: #333;
    border-radius: 5px;
    color: #fff;
    margin-right: 10px;
    position: absolute;
    top: 0px;
    left: 800px;
    overflow-x: auto;
}

.upgrade-button {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.alternate {
    background-color: #444;
}


#craft,
#smelter {
    flex-grow: 1;
    flex-basis: 0;
    border: 1px solid #ccc;
    padding: 10px;
    /* position: relative; */
    top: 42.4%;
}




#cogs,
#screws,
#wires,
#bolts,
#metalsheets,
#eventtokens {
    text-align: center;
    z-index: 10px;
    border-radius: 10px;
    padding: 1px;
    color: #808080;
}

.playerInfo {
    display: flex;
    position: relative;
    flex-direction: row;
    height: 150px;
    width: 100%;
    top: 42.4%;
    background-color: #333;
    color: #ccc;
}

.hidden {
    display: none;
}

/*=====================================================================================
CHAT
=======================================================================================*/
#chat-box {
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}

#chat-messages {
    max-height: 200px;
    overflow-y: scroll;
}

#chat-input {
    padding: 5px;
    width: 230px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/*=====================================================================================
INVENTORY
=======================================================================================*/
#exampleInventory {
    width: 292;
    height: 446;
    top: 1px;
    position: absolute;
    left: 1073px;
    border: 3px solid purple;
    text-align: center;
    line-height: 50px;
}

#inventoryPageNumber {
    position: absolute;
    top: 370px;
    left: 115px;
}

#nextInventoryPage {
    width: 50px;
    position: absolute;
    right: 50px;
    top: 370px;
}

#backInventoryPage {
    width: 50px;
    position: absolute;
    right: 190px;
    top: 370px;
}