.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-horizontal-scroll {
    overflow-x: auto;
}

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


.tablev3-horizontal-scroll .tablev3-table {
    table-layout: auto;
    min-width: 100%;
}


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

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


.tablev3-header-cell.tablev3-fixed-column {
    z-index: 20;

}


.tablev3-horizontal-scroll .tablev3-header-cell {
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    text-transform: uppercase;
}

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

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

.tablev3-body {
    position: relative;
}

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

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


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

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


.tablev3-cell.tablev3-fixed-column {
    background-color: var(--fw-white-000);
}


.tablev3-horizontal-scroll .tablev3-cell {
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
}

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

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


.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);
}

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

    .tablev3-table {
        min-width: 100%;
    }
}


::-webkit-scrollbar-corner {
    background: var(--fw-white-050);
}
::-webkit-scrollbar-button:single-button {
    background: var(--fw-white-050);
    height: 0px;
    display: none;
    padding: 0px;
    margin: 0px;
  }
  
