.table-wrapper {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  border: solid 1px var(--borderPrimary);
}

table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
}

thead {
  background-color: var(--tableHeadBg);
}

thead th {
  font-size: var(--font_medium_small);
  font-weight: 300;
  background-color: var(--primary50);
  padding: 1rem 0rem;
}

tbody tr {
  cursor: pointer;
}

tbody tr td {
  padding: 1rem 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: var(--font-size-medium-small);
  font-weight: 500;
}

tr {
  border-bottom: 1px solid var(--gray30);
}

.table tr:hover {
  background-color: var(--gray30);
}

.table tr:last-child {
  border: none;
}

.col-width-10 {
  width: 10%;
}

.col-width-15 {
  width: 15%;
}

.col-width-20 {
  width: 20%;
}

.col-width-25 {
  width: 25%;
}

.col-width-30 {
  width: 30%;
}

.col-width-33 {
  width: 33%;
}

.col-width-40 {
  width: 40%;
}
