.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: auto;
  position: relative;
  max-height: inherit;
}

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

.tablev3-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.7rem;
  table-layout: fixed;
  max-width: 100%;
  border-color: var(--fw-white-250);
}

.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: 1px solid var(--fw-white-250);
  z-index: 1;
}

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

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

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

.tablev3-horizontal-scroll .tablev3-header-cell {
  text-transform: uppercase;
}

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

.tablev3-cell {
  padding: 6px 10px;
  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-100);
}

.tablev3-state-cell {
  padding: 24px 12px;
  text-align: center;
  color: var(--fw-white-700);
  border-bottom: 1px solid var(--fw-white-250);
  white-space: normal;
}

.tablev3-state-error .tablev3-state-cell {
  color: var(--fw-danger-500, #b42318);
}

.tablev3-wrapper::-webkit-scrollbar-corner,
.tablev3-wrapper::-webkit-scrollbar-button:single-button {
  background: var(--fw-white-050);
}

.tablev3-wrapper::-webkit-scrollbar-button:single-button {
  height: 0;
  display: none;
  padding: 0;
  margin: 0;
}
