.category__table {
  /*This is the primary styling for the table*/
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #ffffff;
}

.category__table .thead,
.category__table .tbody {
  /*This is needed to make the body, head, and rows resizable and scrollable*/
  display: block;
}

.category__table .thead tr {
  height: 54.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thead tr > div {
  display: flex;
  align-items: center;
}

.category__table .thead .grp_1 {
  flex: 1;
  max-width: 280px;
}

.category__table .thead .grp_2 {
  flex: 4;
  max-width: 620px;
}

.currency {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 8px;
}

.category__table .thead .grp_1 th:nth-child(1) {
  text-align: center;
  flex: 1;
}

.category__table .thead .grp_1 th:nth-child(2) {
  text-align: left;
  flex: 2;
}

.category__table .thead .grp_2 th:nth-child(1) {
  text-align: center;
  flex: 1;
}

.category__table .thead .grp_2 th:nth-child(2) {
  text-align: center;
  flex: 1;
}

.category__table .thead .grp_2 th:nth-child(3) {
  text-align: center;
  flex: 1;
}

.category__table .thead .grp_2 th:nth-child(4) {
  text-align: center;
  flex: 1;
}

.category__table .thead .grp_2 th:nth-child(5) {
  text-align: center;
  flex: 1;
}

/* .category__table .thead th:nth-child(7) {
  text-align: center;
  flex: 2;
}

.category__table .thead th:nth-child(8) {
  text-align: center;
  flex: 2;
} */

.category__table th,
.category__table td {
  box-sizing: border-box;
  height: 54.5px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category__table th {
  font-size: 1.1rem;
  color: #5d6166;
  font-weight: 600;
  text-transform: capitalize;
}

.category__table .tbody {
  max-height: 397px;
  overflow-y: auto;
  overflow-x: hidden;
}

.category__table tr {
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}
