body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
}
.tabcontent {
    height: calc(100vh - 120px); /* Adjust based on header and tab height */
    display: flex;
    flex-direction: column;
}
.chart-container {
    flex-grow: 1;
    position: relative;
}
.table-container {
    flex-grow: 1;
    overflow-y: auto;
}

