.chart-container {
    width: 45%;
    margin: 2.5%;
    /*background-color: purple;*/
}

.chart-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /*background-color: aqua;*/
}

#latestValue {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

#peakValue {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

#currentTime {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

#fifteenMinuteAverage {
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

.hidden {
    display: none;
}

.dashboard {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.dashboard-item {
    font-size: 20px;
    color: #343a40;    
}

#legend {
    display: none;
}

#legend .legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em; /* Increase the font size */
    color: #343a40; /* Change the text color */
}

#legend .legend-color {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #090a0a;
}

#legend .legend-item span {
    font-weight: bold; 
}

.actionbutton:not(:last-child) {
    margin-right: 10px;
}