.reference-container {
$toolHeight: 100px;
$searchPanelHeight: 50px;
height: 100%;
display: flex;
flex-direction: column;
.tools {
height: $toolHeight;
}
.searchPanel {
height: $searchPanelHeight;
}
.mainContent {
flex-grow: 1;
}
}