html {
    font-family: Roboto, Arial, sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 38px;
}

body {
    margin: 0;
    padding: 0;
    /*width: fit-content;
    width: -moz-fit-content;*/
    background-color: #666;
}

.header {
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 0 0 60px 0;
    margin: 0 20px;
    position: fixed;
    z-index: 100000;
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
}

.div2, .div3, .div4, .div5 {
    padding: 20px;
    text-align: center;
    background-color: #444444;
    border-top: unset;
}

.div1 { grid-area: 1 / 1 / 2 / 5; background-color: #181818; padding: 20px}
.div2 { grid-area: 2 / 1 / 3 / 2; border-radius: 0 0 0 10px}
.div3 { grid-area: 2 / 2 / 3 / 3; }
.div4 { grid-area: 2 / 3 / 3 / 4; }
.div5 { grid-area: 2 / 4 / 3 / 5; border-radius: 0 0 10px 0}

.header .battery, .header .boat_battery {
    text-align: left;
}

.main {
    padding-top: 200px;
}

table {
    border-collapse: collapse;
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
}

.top > td:first-child {
    padding: 25px;
    background-color: #181818;
    border-radius: 10px 0 0 0;
    font-size: 54px;
    line-height: 40px;
}

.single > td:first-child {
    border-radius: 10px 0 0 10px;
}

.top > td {
    background-color: #181818;
}

.top > td:last-child {
    background-color: #181818;
    border-radius: 0 10px 0 0;
    color: #666666;
    font-size: 24px;
    padding-right: 10px;
    text-align: right;
    max-width: 130px;
    overflow: hidden;
}

.single > td:last-child {
    border-radius: 0 10px 10px 0;
}

.bottom td:first-child {
    background-color: #444444;
    border-radius: 0 0 0 10px;
}

.bottom td {
    text-align: center;
    background-color: #444444;
    padding: 20px 10px;
    height: 50px;
}

.bottom td:last-child {
    background-color: #444444;
    border-radius: 0 0 10px 0;
    overflow: hidden;
}

.gps {
    background-image: url("../satellite-white.svg");
    width: 40px;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.spacer {
    height: 10px;
}

.dot {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    /*margin: 15px 0 5px 0;*/
    padding: 0;
}

.status-green {
    color: #30b455;
    background-color: #30b455;
}

.status-red {
    color: #e81309;
    background-color: #e81309;
}

.status-orange {
    color: #efaf13;
    background-color: #efaf13;
}

/*.status-green {
    color: green;
}

.status-red {
    color: red;
}*/


