*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,sans-serif;
}

html,
body{
width:100%;
height:100vh;
overflow:hidden;
background:#f4f1ec;
}

.page{
height:calc(100vh - 38px);
display:flex;
}

.content{
flex:1;
    padding-top:24px;
    padding-left:121px;
overflow:hidden;
}

.table-wrapper::-webkit-scrollbar{
width:10px;
}

.table-wrapper::-webkit-scrollbar-thumb{
background:grey;
border-radius:20px;
}

.table-wrapper::-webkit-scrollbar-track{
background:#f1f1f1;
}