.overflow-x-auto {
  min-height: 200px;
/*   padding-bottom: 60px; */
}

#navDiv {
  display: block;
}

.instructions {
  background: #fee7c6;
  border-radius: 5px;
}

li label {
  flex: 0 1 calc(100% / 7); /* Each element takes up 1/7 of the row width minus gap space */
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1%;
  padding-right: 1%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* Ensure padding and border are included in the element's width and height */
  font-size: clamp(16px, 2vw, 20px); /* Adjust font size dynamically */
}

.w-full {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tableHead {
  background-color: #154b40;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 10px;
  border-radius: 10px 10px 0 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
  font-family: "sofia-pro", sans-serif;
  line-height: 1.7;
  font-size: 1.3rem;
  margin: 0;
  color: #27253d;
  background: #e6f3f8;
}

main {
  position: relative;
  padding: 1rem 1rem 3rem;
  min-height: calc(100vh - 4rem);
}

h1 {
  font-size: 26pt !important;
  margin-top: 0;
}

div > p > a {
  color: #0f4876;
  text-decoration-line: underline;
}

#paginated-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

#paginated-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 18px;
}

#paginated-list > li{
    display: none;
}

.paginateHidden {
  display: none !important;
}

.pagination-container {
  width: calc(100% - 2rem);
  display: flex;
  align-items: center;
/*   position: absolute; */
/*   bottom: 15px; */
  padding: 1rem 0;
  justify-content: center;
}

.pagination-number,
.pagination-button{
  font-size: 1.1rem;
  background-color: transparent;
  border: none;
  margin: 0.25rem 0.25rem;
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: .2rem;
}

.pagination-number:hover,
.pagination-button:not(.disabled):hover {
  background: #fff;
}

.pagination-number.active {
  color: #fff;
  background: #154b40;
}

footer {
  padding: 1em;
  text-align: center;
  background-color: #FFDFB9;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer .heart {
  color: #DC143C;
}



/* Style for table */
  table {
    width: 100%;
    border-collapse: collapse;
  }
  /* Style for table cells */
  td {
    
  }
  /* Media query for mobile */
  @media only screen and (max-width: 600px) {
    /* Display table cells in one column for mobile */
    td {
      width: 100%;
      display: block;
      box-sizing: border-box;
    }
    
    #paginated-list{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
  }
  /* Media query for larger screens */
  @media only screen and (min-width: 601px) {
    /* Display table cells in two columns for larger screens */
    td {
      width: 50%;
    }
  }