body {
  height: 100%;
  width: 100%;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
}

header,
main {
  width: 100%;
  max-width: calc(100% - 10em);
  padding: 0 10px;
}

header {
  text-align: left;
  width: 100%;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  padding: 1em;
  overflow-x: hidden;
}

h1 {
  font-size: 2.6em;
  margin: 0.25em 1;
  color: rgb(10, 68, 44);

}


h2 {
  font-size: 30px;
  color: rgb(71, 181, 97);
}

h3 {
  font-size: 24px;
  margin: 0.25em 0;
  font-weight: 400;
  color: rgb(35, 124, 138);
}

h4 {
  font-size: 20px;
  color: rgb(39, 97, 54);
}

h5 {
  font-size: 16px;
  color: rgb(80, 143, 97);
  font-weight: 400;
}


p {
  font-size: 1em;
  word-wrap: break-word;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  box-sizing: border-box;
  margin: 0;
  padding: 5px 0;
}

b {
  font-weight: bold;
}

hr {
  height: 2px;
  border: none;
  border-top: 0.1px solid #ccc;
  margin: 2em 0;
}

img {
  border: 0.4px solid #7d7a7a;
  padding: 2em;
  max-width: 100%;
}


.noborder img {
  border: none;
}

ol {
  list-style: decimal;
  margin: 0;
  padding: 2em;
}

li {
  margin-bottom: 15px;
}


.limitations-list {
  color: #666060;
  font-size: 12px;
  margin: 0;
  padding: 1em;
}


a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
  word-wrap: break-word;
  width: fit-content;
}

th {
  background-color: #918b8b;
}


.term.header {
  font-size: 10px;
  border: 1px solid black;
  background-color: #aea8a8;
}

.term {
  font-size: 10px;
  border: 1px solid black;
}

.table {
  width: auto;
  table-layout: auto;
  border-collapse: collapse;
}

.term.header {
  font-size: 10px;
  border: 1px solid black;
  background-color: #aea8a8;
}

.term {
  font-size: 10px;
  border: 1px solid black;
  width: auto;
  max-width: 800px;

}

.table-figure {
  text-align: center;
}

.table-figure img {
  display: block;
  margin: 0 auto;
}

.table-figure figcaption {
  font-size: smaller;
  color: darkgrey;
  text-align: center;
  margin-left: 0 auto;
  margin-right: 0 auto;
  /* width: 600px; */

}

/* Modal container */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(205, 216, 207, 0.8);
  cursor: pointer;
}

/* Modal image */
#modal-image {
  display: block;
  margin: 50px auto;
  max-width: 90%;
  max-height: 90%;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Caption container */
.caption {
  position: absolute;
  top: 20px; 
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px; 
  color: #000000;
  text-align: center;
}

.modal img {
  border: none;
  padding: 0;
}

/* Gallery container */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust gap as needed */
}

/* Individual gallery item */
.gallery-item {
  flex: 0 0 calc(25% - 20px); /* Adjust width and gap as needed */
}

