/* subject page table */

.table {
    width: 100%;
    border-collapse: collapse;
  }

  .table tbody tr td a{
    color: #000 !important;
  }

  .table tr th:first-child{
    border-radius: 0 !important;
}

.table tr th:last-child{
    border-radius: 0 !important;
}

.table tbody tr td:first-child{
      border-radius: 0 !important;
    }
    
    .table td{
        border: 1px solid #000 !important;
    }
    
    .table tbody tr td:last-child{
      border-radius: 0 !important;

  }
  
  .table td,
  .table th {
    padding: 12px 15px;
    border: 1px solid #000;
    text-align: center;
    font-size: 16px;
  }
  
  .table th {
    background-color: #9EB85D !important;
    color: #ffffff;
  }
  
  .table tbody tr:nth-child(even) {
    background-color: #dee1d6;
  }
  
  /*responsive*/
  
  @media (max-width: 500px) {
    .table thead {
      display: none;
    }
  
    .table,
    .table tbody,
    .table tr,
    .table td {
      display: block;
      width: 100%;
    }
    .table tr {
      margin-bottom: 15px;
    }
    .table td {
      padding-left: 50%;
      text-align: left;
      position: relative;
    }
    .table td::before {
      content: attr(data-label);
      position: absolute;
      left: 0;
      width: 50%;
      padding-left: 15px;
      font-size: 15px;
      font-weight: bold;
      text-align: left;
    }
  }
  