.table-wrapper{
	overflow: scroll;
	height: 100%;
    max-height: 80vh;
	width: 1000px;
    margin: 30px auto;
    box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );
    border-radius: 10px;
	
}

.fl-table {
    border-radius: 5px;
    font-size: 15px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.darkmode .fl-table {
    background-color: var(--color-black-400);
}

.fl-table thead {
	position: sticky;
	inset-block-start: 0;
}

.fl-table td, .fl-table th {
	max-width: 400px;
	overflow: scroll;
	/**text-overflow: ellipsis; **/
	white-space: nowrap;
    text-align: center;
    padding: 15px;
    border-right: 1px solid white;
}
.darkmode .fl-table td{
    border-right: 1px solid var(--color-black-300);
}
.darkmode.fl-table th {
    border-right: 1px solid var(--color-black-300);
}
.fl-table td {
    font-size: 15px;
}

.fl-table th {
    color: #ffffff;
    background: #0e2431;
}


.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}

.darkmode .fl-table tr:nth-child(even) {
    background: var(--color-black-300);
}


@media (max-width: 1000px) {
    .table-wrapper {
        width: 90%;
        max-height: 80vh;
    }
    .fl-table {
        display: block;
        width: 100%;
    }

    .fl-table thead, .fl-table tbody, .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child{
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td, .fl-table th {
        padding: 20px .625em .625em .625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: scroll;
        overflow-y: auto;
        width: 150px;
        font-size: 12px;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid var(--color-black-300);
    }
    .fl-table tbody tr {
        display: table-cell;
    }
    .fl-table tbody tr:nth-child(odd) {
        background: none;
    }
    .fl-table tr:nth-child(even) {
        background: transparent;
    }
    .darkmode .fl-table tbody tr:nth-child(odd) {
        background: var(--color-black-300);
    }
    .darkmode .fl-table tr:nth-child(even) {
        background: var(--color-black-300);
    }
    .fl-table tr td:nth-child(odd) {
        background: #F8F8F8;
        border-right: 1px solid #E6E4E4;
    }
    .darkmode .fl-table tr td:nth-child(odd) {
        background: var(--color-black-400);
        border-right: 1px solid var(--color-black-300);
    }
    .fl-table tr td:nth-child(even) {
        border-right: 1px solid #E6E4E4;
    }
    .darkmode .fl-table tr td:nth-child(even) {
        border-right: 1px solid var(--color-black-300);
    }
    .fl-table tbody td {
        display: block;
        text-align: center;
    }
}