:root {
    --primary: #397ac9;
    --light-primary: #c3cfe3;
    --lighter-primary: #c9d4e6;
    --text-primary: #e8e8f4;
    --text-light-primary: #141414;
    --secondary: #272926;
    --light-secondary: #6c706a;
    --lighter-secondary: #9fa19d;
    --tertiary: #E6E8ED;
    --text-secondary: #141414;
    --white: #EEEEEE;
    --dark-grey: #434343;
    --light-grey: #dcdcdc;
    --lighter-grey: #fafafa;
    --green: #40B240;
    --pale-green: #D8FFD8;
    --hover-red: #da4040;
    --red: #e04c4c;
    --light-red: #E67979;
    --pale-red: #FFB0B0;
    --dark-white: #eeeeee;
    --primary-border-style: 2px solid var(--primary);
    --secondary-border-style: 2px solid var(--secondary);
    --dark-grey-border-style: 2px solid var(--dark-grey);
    --light-grey-border-style: 1px solid var(--light-grey);
}

.loading-wheel {
    display: flex;
    justify-content: center;
}

.loading-wheel img, .info-panel .loading-wheel img {
    width: 4.6em;
}

.footer-container {
    margin-top: 1em;
    padding-top: 0.8em;
    border-top: var(--secondary-border-style);
    z-index: 1;
}

.met-charts-tabs {
    margin-bottom: 15px;
    text-align: center;
}

.met-charts-tab-button {
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.met-charts-tab-button.active {
    background-color: #4472c4;
    color: white;
    border-color: #2e5cb8;
}

.met-chart {
    display: none;
    min-height: 400px;
}

.met-chart.active {
    display: block;
}