.content__table {
  /*This is the primary styling for the table*/
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #ffffff;
}

.content__table .thead,
.content__table .tbody {
  /*This is needed to make the body, head, and rows resizable and scrollable*/
  display: block;
}

.content__table .thead tr {
  height: 54.5px;
  display: flex;
  align-items: center;
}

.content__table .thead .title {
  text-align: left;
  flex: 5;
}

.content__table .thead .paywall {
  text-align: center;
  flex: 1;
}

.content__table .thead .price {
  text-align: center;
  flex: 1;
}

.content__table .thead .category {
  text-align: center;
  flex: 2;
}

.content__table th,
.content__table td {
  padding: 10px;
}

.content__table th {
  font-size: 1.1rem;
  color: #5d6166;
  font-weight: 600;
  text-transform: capitalize;
}

.currency {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 8px;
}

.content__table .tbody {
  height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
}

.content__table tr {
  border-bottom: 2px solid #f0f0f0;
}
