/* sunday_school.css */

.sunday-school-table {
   width: 90%;
   border: 2px solid lightgrey;
   margin-bottom: 20px;
 }

td:nth-child(2) {
  min-width: 65px;
}

@media only screen and (max-width: 700px) {
  .sunday-school-table {
     width: 96%;
  }

  td:nth-child(1), th:nth-child(1)  {
    display: none;
  }
  td:nth-child(4), th:nth-child(4)  {
    display: none;
  }
}
