* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Futura-Medium, Arial, Helvetica, sans-serif;
    height: 100vh;
    padding: 10px;
}

body#dashboard-view {
    background-color: #202020;
    color: #ffef00;
}

h1, h2, h3, h4, h5, h6 {
    padding-top: 10px;
}

ul {
    margin-block-start: 16px;
    margin-block-end: 16px;
    padding-inline-start: 40px;
}

ul li {
    line-height: 1.4em;
}

a, a:visited {
    color: #0000EE
}

a:active {
    color: #ff0000;
}

div.container {
    margin: 8px;
    width:100%;
    float: left;
}

table td {
    font-size: 25px;
    padding: 2px 2px;
    vertical-align: center;
}

table.measurements {
    white-space: pre-wrap;
}

.container {

}

.clock-container {
    float:left;
    display:block;
    position: relative;
    height: auto;
    padding: 10px;
    width: 350px;
}

.clock-container .time {
    margin: 0 auto;
    text-align: left;
}

div.update-timestamp-container {
    clear:both;
    float:left;
    position: relative;
    font-size: 13px;
    text-align: center;
    padding: 0 10px;
    width: 330px;
}

.wind-rose-container {
    float: left;
    position: relative;
    height: auto;
    padding: 10px;
    width: 330px;
}

.wind-rose-compass-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.wind-rose-container .wind-rose-location {
    position: relative;
    width: auto;
    margin: 0 auto;
    text-align: center;
}
.wind-rose-location .name,
.wind-rose-location .measurements,
.wind-rose-location .measurements-error {
    font-size: 25px;
}

.wind-rose-container .wind-rose-compass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wind-rose-container .wind-rose-compass-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 2;
}

.compass {
    width: 250px;
    height: 250px;
}

/**
    Measurements Table
*/
table.measurements {
    border-collapse: collapse;
    width: 100%;
    vertical-align: top;
    text-align: left;
}

table.measurements {
    border: 0;
}
table.measurements tr td {
    border: 2px solid #ffef00;
}

table.measurements tr td {
    font-size: 25px;
}

table.measurements tr td.parameter-description small {
    font-size: 15px;
}

.error {
    color: #ff0000;
}

#clock .time {
    font-size: 60px;
    font-weight: bold;
}

#clock .date {
    font-size: 30px;
    font-weight: normal;
}
