.profile-views-page {
    background-color: #f6f7fc;
    font-family: var(--font-family-poppins);
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 144px;
  }
  .profile-views-page .profile-views h2 {
    font-size: var(--font-size-36);
    font-weight: var(--font-weight-semiBold);
    line-height: var(--line-spacing-46);
    color: var(--color-black);
    margin-bottom: 50px;
  }
  .profile-views-page table {
    border: 1px solid #fff;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    border-radius: 8px;
    padding: 1em;
  }

  .profile-views-page table tr {
    background-color: #ffff;
    border: 1px solid #d4d4d4;
  }

  .profile-views-page table th,
  .profile-views-page table td {
    padding: 1em;
    text-align: center;
  }

  .profile-views-page table th {
    font-size: var(--font-size-18);
    font-weight: 600;
    letter-spacing: 0px;
    color: #070707;
    text-transform: uppercase;
  }

  .checkbox-th {
    width: 50px;
  }

  .profile-views-page table td button {
    background: #2f6edb;
    width: 85px;
    height: 36px;
    color: #fff;
    border: 0;
    font-size: var(--font-size-16);
    border-radius: 8px;
  }
  .table-container {
    padding: 2em;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    border-radius: 8px;
  }
  @media screen and (max-width: 993px) {
    .checkbox-th {
      width: auto;
    }
    .profile-views-page table {
      border: 0;
    }

    .profile-views-page table caption {
      font-size: 1.3em;
    }

    .profile-views-page table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }

    .profile-views-page table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: 0.625em;
    }

    .profile-views-page table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: 0.8em;
      text-align: right;
    }
    .profile-views-page table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }

    .profile-views-page table td:last-child {
      border-bottom: 0;
    }
  }
