.post-list {
  padding: 80px 0;
  overflow: auto;
}
.post-list .pl-content-box {
  background-color: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 24px 16px 40px;
  border-radius: 12px;
}
.post-list .pl-header {
  margin-bottom: 28px;
  gap: 12px;
}
.post-list .pl-header ul {
  gap: 24px;
}
.post-list .pl-header ul li a {
  color: #646464;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.post-list .pl-header ul li a svg {
  margin-right: 4px;
  opacity: 0.5;
}
.post-list .pl-header ul li.active a {
  border-color: #bfbfbf;
  color: #1a1a1a;
}
.post-list .pl-header ul li.active a svg {
  opacity: 1;
}
.post-list .pl-header h6 {
  font-weight: 400;
  margin-bottom: 0;
}
.post-list .pl-header .btn svg {
  margin-right: 12px;
}
.post-list .pl-header .select-box {
  margin-bottom: 12px;
  position: relative;
}
.post-list .pl-header .select-box::before {
  content: url(../../images/icons/arrowDown.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  line-height: 0;
}
.post-list .pl-header .select-box select {
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  padding: 8px 12px;
  appearance: none;
  --webkit-appearance: none;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.post-list .table-wrapper {
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  overflow: hidden;
}
.post-list .table-wrapper .db-table {
  width: 100%;
}
.post-list .table-wrapper .db-table input {
  width: auto;
  display: inline-block;
  min-width: 18px;
  height: 18px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  margin-right: 8px;
  margin-top: 4px;
}
.post-list .table-wrapper .db-table .db-thead {
  width: 100%;
  background-color: #fafafa;
}
.post-list .table-wrapper .db-table td,
.post-list .table-wrapper .db-table th {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.post-list .table-wrapper .db-table th {
  padding: 12px 16px 8px;
}
.post-list .table-wrapper .db-table td {
  padding: 20px 16px;
}
.post-list .table-wrapper .db-table td:first-child {
  max-width: 400px;
  display: block;
}
.post-list .table-wrapper .db-table td:last-child {
  text-align: right;
}
.post-list .table-wrapper .db-table td .btn-outlined-v2 svg {
  width: 14px;
  height: 14px;
  margin-top: -4px;
  margin-left: 8px;
}
.post-list .table-wrapper .db-table .status span {
  padding: 4px 16px;
  border-radius: 15px;
  display: inline-block;
  line-height: 23px;
  letter-spacing: 0;
}
.post-list .table-wrapper .db-table .status.approved span {
  background: rgba(123, 226, 150, 0.4);
  color: #2a8342;
}
.post-list .table-wrapper .db-table .status.rejected span {
  background: rgba(240, 108, 108, 0.2509803922);
  color: #d07900;
}
.post-list .table-wrapper .db-table .status.review span {
  background: rgba(255, 136, 0, 0.2);
  color: #bd2323;
}
.post-list .table-wrapper .db-table .status.draft span {
  background-color: rgba(217, 217, 217, 0.6);
  color: #1a1a1a;
}
.post-list .table-wrapper .db-mobile-table.db-table tr:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.post-list .table-wrapper .db-mobile-table.db-table td > div {
  gap: 12px;
}
.post-list .table-wrapper .db-mobile-table.db-table td > div .content {
  width: 100%;
}
.post-list .table-wrapper .db-mobile-table.db-table td > div .content > p {
  font-family: Jost;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 12px;
}
.post-list .table-wrapper .db-mobile-table.db-table td > div .content .extra-info {
  margin-bottom: 12px;
}
.post-list .table-wrapper .db-mobile-table.db-table td:last-child {
  display: block;
  max-width: unset;
  text-align: start;
}
.post-list .table-wrapper .db-mobile-table.db-table input {
  margin-top: 0;
}
.post-list .table-wrapper .btn-outlined-v2 {
  padding: 4px 16px;
}
.post-list .table-footer strong {
  font-size: 16px;
  line-height: 23px;
  display: inline-block;
  color: #646464;
  font-weight: 500;
  margin-top: 16px;
}
.post-list .table-footer .btn {
  margin-top: 32px;
}

.user-table .db-mobile-table.db-table td > div .content .extra-info span {
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 768px) {
  .post-list .pl-content-box {
    padding: 36px 36 40px;
  }
  .post-list .pl-content-box .pl-header .select-box {
    min-width: 375px;
  }
  .post-list .pl-content-box .db-mobile-table.db-table tr:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
  }
  .post-list .pl-content-box .db-mobile-table.db-table td > div .content .extra-info span {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1200px) {
  .post-list .pl-content-box .table-footer strong {
    margin-top: 24px;
  }
  .post-list .pl-content-box .table-footer .btn {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .post-list .table-wrapper .db-table th:nth-child(2),
  .post-list .table-wrapper .db-table td:nth-child(2) {
    min-width: 248px;
  }
  .post-list .table-wrapper .db-table th:nth-child(3),
  .post-list .table-wrapper .db-table td:nth-child(3) {
    min-width: 209px;
  }
}
