body {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

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

select {
    background-color: #D9D9D9;
    border: none;
    color: rgb(0, 0, 0);
    padding: 15px 5%;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-align-last: center;
}

option {
    text-align: justify;
}

.navbar {
    display: flex;
    background: #ffffff;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid black;
    height: 10vh;
}

.menu {
    display: flex;
    list-style: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px 0px 40px;
}

.item-left,
.item-center,
.item-right {
    flex: 1;
}

.item-left {
    display: flex;
    gap: 10%;
}

.item-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.main-content {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    height: calc(90vh - 2px);
}

.vpd-container {
    border: none !important;
}

.main-content .container {
    display: flex;
    background-color: #ffffff;
    border-right: solid 2px black;
    width: calc((100vw/3) - 2px);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    justify-content: space-between;
}



.current-value-container {
    background-color: #D9D9D9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 12.5%;
    border-radius: 30px;
    padding: 5% 7% 5% 7%;
    height: auto;
    width: auto;
}

.current-value-container h1 {
    margin: 0;
    font-size: 4.5em;
}

.current-value-container p {
    margin: 0;
    font-size: 1.2em;
    color: #868686;
}

.chart {
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    height: 300px;
    justify-content: center;
}

.svg-container {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* aspect ratio */
    vertical-align: top;
    overflow: hidden;
}

.svg-content-responsive {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 0;
}

.button-on {
    background-color: green;
}

.button-off {
    background-color: red;
}

.valueSafe {
    color: rgb(0, 180, 0);
}

.valueWarning {
    color: rgb(255, 255, 0);
}

.valueDanger {
    color: rgb(220, 0, 0);
}