body {
    font-family: Arial, Helvetica, sans-serif;
}

h2, h3 {
    padding-top: 2rem;
    border-bottom: thin lightgrey solid;
}

#table_title {
    display: none;
}

#limit {
    font-weight: bold;
}

.buttons {
    padding: 1rem;
    text-align: center;
}

.form_button {
    min-width: 100px;
    height: 50px;
    background-color: gray;
    color: white;
    text-decoration: none;
    padding: 25px;
    font-weight: bold;
}

.chemical_log_button {
    background-color: rgb(219, 68, 55);
}

.inventory_log_button {
    background-color: rgb(103, 58, 183);
}

.pump_house_log_button {
    background-color: rgb(63, 81, 181);
    ;
}

/* Style the tab */

.tab {
    overflow: hidden;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: -8px;
    position: fixed;
    bottom: 0;
    z-index: 1;
}

/* Style the buttons that are used to open the tab content */

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */

.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */

.tabcontent {
    display: none;
    border-top: none;
}

.tabcontent.active {
    display: block;
}

.tabtext {
    display: block;
    font-size: x-small;
}

/* custom styling for font awesome icons */

.tablinks i.fas, i.fab {
    font-size: xx-large;
    vertical-align: middle;
}

i.inlineicon {
    padding-left: .5em;
}

/* force google table header to wrap */

.googleHeaderCell {
    text-align: left;
}

@media (min-width: 768px) {
    .buttons {
        text-align: left;
    }
    .tab {
        display: block;
        justify-content: flex-start;
        position: static;
    }
    .tabtext {
        display: inline;
        font-size: medium;
        vertical-align: middle;
        padding-left: 0.5em;
    }
}