/* table { display: flex; flex-flow: column; width: 100%; } thead { flex: 0 0 auto; } tbody { flex: 1 1 auto; display: block; overflow-y: auto; overflow-x: hidden; } tr { width: 100%; display: table; table-layout: fixed; } */ .container { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; } th { background: white; position: sticky; top: 0; /* Don't forget this, required for the stickiness */ } th, td { border-inline: 1px solid black; /*Add this*/ } table { border-collapse: collapse; text-align: center; } .title { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; align-items: center; width: 100%; } /* .logout-btn{ align-self: center; } */ /*.btn { margin: 20px; } #table { margin: 0 20px 0 20px; }*/ /*#table-img { margin: 0 20px 0 20px; }*/ .title h1 { color: #5a74b7; margin-top: 20px; margin-bottom: 20px; font-size: 63px; } #table { display: flex; align-items: flex-start; flex-direction: column; } #table-img { display: flex; align-items: flex-start; flex-direction: column; } #table table { overflow-y: auto; max-height: 400px; display: block; width: fit-content; } #table-img table { overflow-y: auto; max-height: 300px; display: block; width: fit-content; } /*.alert { margin: 10px 0 10px 0; }*/ .table-img { height: 30px; } #response-msg { color: red; } #loading-field { display: none } .loader { margin-inline: 5px; margin-bottom: -8px; width: 25px; height: 25px; border: 5px solid #ffffff; border-bottom-color: transparent; border-radius: 50%; display: inline-block; box-sizing: border-box; animation: rotation 1s linear infinite; } .row-align{ display: flex; flex-direction: row; } @keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }