.tez-table-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.tez-table {
  width: 100%;
  border-collapse: collapse;
}

.tez-table th,
.tez-table td {
  padding: 12px 0;
  text-align: center;
}

.tez-table th {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: black;
  position: sticky;
  top: 0;
  z-index: 10;
}

.tez-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
}

.tez-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

