body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.row {
    display: flex;
    justify-content: space-between;
    height: 50vh; /* Take up half the height of the viewport */
}
.full-width {
    width: 100%;
    height: 100%; /* Take up all the height of its parent */
    max-height: 600px;
    overflow: auto; /* Add a scrollbar when necessary */
    background-color: #f0f0f0; /* Light grey background to make it visible */
}
.half-width {
    width: 49%;
    height: 200px;
    border: 1px solid black;
    padding: 10px;
    overflow: auto;
}
.button-row {
    height: 50px; /* or whatever height you want */
    justify-content: flex-start;
}
table {
    height: 100%;
    width: 100%;
}
