body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior: contain;
}

button:hover {
    cursor: pointer;
}

.toggle-btn {
    padding: 5px;
}

#sidebarWrapper {
    display: flex;
    height: calc(99 * var(--vh));
}

#dashboardWrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    max-width: 100vw;
    background-color: #f4f5f5;
}

.dashboard {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    /* max-width: 100vw; */
    max-height: clamp(100px, 85vh, 90vh);
    padding-bottom: 70px;
}

.dashboard-tools {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 0.75vw;
}

.dashboard-tools-spacer {
    display: flex;
    flex-basis: 10vw;
    align-items: center;
    justify-content: space-evenly;
}

.hidden {
    display: none;
}

.chart {
    grid-column: 10;
    grid-row: 5;
}

.breathe {
    background-color: lightblue;
    border-radius: 0.5em;
    transition: background-color 1s ease-in-out;
}

.img-container {
    display: flex;
    justify-content: center;
}

.img-container>img {
    width: 100%;
    height: auto;
}

ul>li>a {
    color: #2552a5;
}
