#chart-desc {
    max-width: 620px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ccc;
    font-size: smaller;
}

#chart {
    height: 200px;
    max-width: 620px;
    margin: 0 auto;
}

#chart-desc-date {
    font-style: italic;
}

#chart-nav {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

#chart-desc-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#chart-desc-header {
    font-weight: bold;
    font-size: large;
}

.highcharts-point,
#button-prev,
#button-next {
    cursor: pointer;
    font-size: small;
}

button {
    display: inline-block;
    border: none;
    padding: 0.5rem;
    margin: 0;
    text-decoration: none;
    background: #0069ed;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out,
        transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button:hover,
button:focus {
    background: #0053ba;
}

button:active {
    transform: scale(0.99);
}

@media only screen and (max-width: 600px) {
    #chart-nav {
        padding-bottom: initial; 
        flex-wrap: wrap;
    }

    #chart-desc-header-container {
        order: 99;
        width: 100%;
        padding-top: 20px;
    }

    #button-prev, #button-next {
        width: 30%;
    }
}
