.tablev3-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tablev3-wrapper {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: auto;
    position: relative;
    max-height: inherit;
}

.tablev3-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Albert Sans', sans-serif;
    /* font-size: 14px; */
    font-size: 0.4rem;
    table-layout: fixed;
    max-width: 100%;
}



@media screen and (min-width: 405px) {    
    .tablev3-table{
        font-size: 0.4rem;
    }
}
@media screen and (min-width: 614px) {    
    .tablev3-table{
        font-size: 0.55rem;
    }
}
@media screen and (min-width: 767.5px) {    
    .tablev3-table{
        font-size: 0.7rem;
    }
}
@media screen and (min-width: 1000) {    
    .tablev3-table{
        font-size: 1rem !important;
    }
}









.tablev3-header {
    position: sticky;
    top: 0;
    background-color: var(--fw-white-050);
    border-bottom: 2px solid var(--fw-white-200);
    z-index: 10;
}

.tablev3-header-cell {
    padding: 10px 3px;
    text-align: left;
    /* border-bottom: 2px solid var(--fw-white-450); */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: sticky;
    top: 0;
    background-color: var(--fw-white-050);
    z-index: 10;
    font-weight: 600;
}


@media screen and (min-width: 201px) {    
    .tablev3-header-cell{
        padding: 10px 2px;
    }
}


@media screen and (min-width: 567px) {    
    .tablev3-header-cell{
        padding: 10px 4px;
    }
}
























.tablev3-body {
    position: relative;
}

.tablev3-row {
    transition: background-color 0.1s ease;
}

.tablev3-row:hover {
    background-color: var(--fw-white-150);
}

.tablev3-cell {
    padding: 8px;
    border-bottom: 1px solid var(--fw-white-200);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


@media screen and (min-width: 201px) {    
    .tablev3-cell {
        padding: 10px 2px;
    }
}


@media screen and (min-width: 567px) {    
    .tablev3-cell {
        padding: 10px 4px;
    }
}



/* Add a box-shadow to the header to create a visual separation when scrolling */
.tablev3-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #eee;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Ensure the table takes full height in dialog */
/* .modal-body .tablev3-container {
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
} */

@media screen and (max-width: 768px) {
    .tablev3-wrapper {
        overflow-x: auto;
    }
    
    .tablev3-table {
        min-width: 100%;
    }
}
