.table-container {
    width: 100%;
    height: 100%; /* 100vh; Use viewport height instead of percentage */
    overflow: auto;
    position: relative;
}
        
.sticky-header tr {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #f2f2f2;
}