#InventoryDashboard{
    font-family: 'Roboto', sans-serif;
    overflow: auto;
}
.goalItemHeader,.goalItem {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
}

.thirdCol {
    width: 30%;
    padding: 25px;
    padding-bottom: 30px;
    box-shadow: 0px 7px 10px -8px;
    border-radius: 30px;
    font-size: 16px;
    max-width: 500px;
    background: white;
}

.activityHeader,.activity {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
}

.activityHeader {
    font-weight: bold;
}

.goalItem:nth-of-type(2n+1),.activity:nth-of-type(2n+1) {
    background: #dfdba85c;
}

.goalItem {
    padding: 4px;
    border-radius: 5px;
}

.thirdCol h5 {
    margin-bottom: 5px;
}

.goalItemHeader {
    font-weight: bold;
    font-size: 14px;
    background: #dedba7;
    padding: 4px;
}

section#InventoryDashboard h2 {
    margin-top: 5px;
}

section#InventoryDashboard .flex {
    justify-content: space-around;
    align-items: flex-start;
}

.inventoryDashHeader img {
    height: 200px;
    margin-right: 40px;
    margin-left: 30px;
}

.inventoryDashHeader {
    display: flex;
    align-items: flex-start;
    background: #dddba8;
    padding-bottom: 80px;
    margin-bottom: -80px;
}

.inventoryDashHeader h1 {
    font-size: 85px;
    margin: 0px;
    margin-top: 30px;
}

.inventoryDashHeader p {
    margin-top: -8px;
    margin-left: 20px;
    font-style: italic;
    color: #0000006e;
    font-size: 18px;
}

.goalItem .negative,.activity .negative {
    font-weight: bold;
    color: red;
}

#InventoryDashboard .activity {
    padding: 2px 0px;
}

#InventoryDashboard .closeBtn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
}
.activity .small{
    font-size: 14px;
}






@media screen and (max-width: 600px) {
    .inventoryDashHeader {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .inventoryDashHeader h1 {
        font-size: 37px;
        margin: 0px;
        margin-top: -20px;
    }

    .inventoryDashHeader p {
        margin: 0px;
        margin-top: 0px;
        margin-bottom: 25px;
        font-size: 14px;
    }

    section#InventoryDashboard .flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
    }

    .thirdCol {
        width: 80%;
        margin-bottom: 20px;
    }

    section#InventoryDashboard {
        overflow: auto;
    }
}