
/* Media Queries */
@media only screen and (max-width: 600px) {
  /* Hide the regular menu items */
  nav ul li:not(.menu-toggle) {
    display: none;
  }

  /* Show the hamburger menu icon */
  .menu-toggle {
    display: block;
  }

  /* Display the menu items in a column when the 'show' class is present */
  nav ul.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    top: 60px;
  }

  nav ul.show li:not(.menu-toggle) {
    display: block;
  }

  /* Adjust the height and padding of nav li */
  nav li {
    margin: 0;
    padding: 0.5rem 1rem;
  }

  nav li.menu-toggle {
    padding: 0 1rem;
    line-height: 60px; /* Match the header height */
  }

  /* Adjust font size for menu items */
  nav a {
    font-size: 0.9rem;
  }

  /* Adjust font size */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }

  /* Hide authors and cite in table */
  th:nth-child(3),
  td:nth-child(3),
  th:nth-child(5),
  td:nth-child(5),
  td:nth-child(5) button {
    display: none;
  }

}
