/* &&table stlying */

.article-stats-table {
  /*This is the primary styling for the table*/
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #ffffff;
}

.article-stats-table .thead,
.article-stats-table .tbody {
  /*This is needed to make the body, head, and rows resizable and scrollable*/
  display: block;
}

.article-stats-table .thead tr {
  height: 45px;
  padding: 0 79px;
  display: flex;
  align-items: center;
}

.article-stats-table .thead th:nth-child(1) {
  text-align: left;
  flex: 5;
}

.article-stats-table .thead th:nth-child(2) {
  text-align: center;
  flex: 1;
}

.article-stats-table .thead th:nth-child(3) {
  text-align: center;
  flex: 1;
}

.article-stats-table .thead th:nth-child(4) {
  text-align: center;
  flex: 1;
}
/* .article-stats-table .thead th:nth-child(5) {
  text-align: center;
  flex: 1;
}
.article-stats-table .thead th:nth-child(6) {
  text-align: center;
  flex: 1;
} */

.article-stats-table th,
.article-stats-table td {
  padding: 10px;
}

.article-stats-table th {
  font-size: 1rem;
  color: #5d6166;
  font-weight: 600;
  text-transform: capitalize;
}

.article-stats-table .tbody {
  max-height: 308px;
  overflow-y: auto;
  overflow-x: hidden;
}

.article-stats-table tr {
  border-bottom: 2px solid #f0f0f0;
}
