html body {
    width: 100%;
    height: 100%;
}

.searchBar {
    height: 100px;
    background-color: #808080;
    padding: 35px;
}

.resultsPanel {
    height: calc(100vh-100px);
    background-color: aquamarine;
}

.resultsPanelPosts {
    background-color: rgb(212, 212, 212);
    overflow-y: scroll;
    display: inline-block;
}

.resultsPanelWords {
    background-color: rgb(212, 212, 212);
    ;
    overflow-y: scroll;
    display: inline-block;
}

.postPanel {
    margin: 10px;
    margin-bottom: 20px;
}

.histogramBar {
    height: 10px;
    background-color: yellow;
}

.histogramHeaderText {
    font-weight: bold;
}