html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Verdana', sans-serif;
}

#chart_and_controls {
    width: 100%;
    height: 100%;
    position: relative;
}

#chart-container {
    width: 100%;
    height: 90%;
    position: relative;
}

#myChart,
.chartjs-render-monitor {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Controls container styling */
#controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
}

.control-group {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* "No Forecast" message styles */
#chart-container.no-forecast {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.no-forecast-message {
    font-size: 24px;
    color: #555;
}
