.head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.mainBody {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#siteSummary {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  min-width: 275px;
}
#photoDiv {
  min-width: min-content;
  max-width: 200px;
  justify-content: center;
  padding: 0.5rem;
}
#viewDiv1 {
  position: relative;
  width: 360px;
  height: 185px;
  padding: 1rem;
  border-radius: 15px;
  /* padding-top: 1rem; */
  z-index: 1;
}

#initialMessage {
  display: block;
  width: 60%;
  color: rgb(86, 86, 103);
  text-align: left;
  font-size: 1rem;
  line-height: 1.3rem;
  padding: 1rem;
}

#noSiteMessage {
  display: none;
  width: 60%;
}
/* Expand map button overlay */
.map-expand-btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  padding: 6px 8px;
  border: 1px solid #28a745;
  border-radius: 6px;
  background-color: #ffffffcc;
  color: #207e11;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.map-expand-btn:hover {
  background-color: #28a74550;
  color: #0f3b08;
}
.slideshow-container {
  position: relative;
  width: auto;
  display: inline-block;
  text-align: center;
}
.photo {
  width: auto;
  max-height: 175px;
  height: auto;
  border-radius: 3px;
  cursor: pointer;
  border-radius: 15px;
}
.image-wrapper {
  display: none;
  position: relative;
}
.image-wrapper:first-child {
  display: block;
}

.enlarge-button {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 8px;
  border: 1px solid #28a745;
  border-radius: 6px;
  background-color: #ffffffcc;
  color: #207e11;
  cursor: pointer;
  backdrop-filter: blur(4px);
  border-radius: 5x;
  z-index: 5;
}
.enlarge-button:hover {
  background-color: #28a74550;
  color: #0f3b08;
}
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #36943480;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 5px;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.contentsDiv {
  align-items: center;
  gap: 5px;
  margin-right: 10px;
  background-color: aquamarine;
}
.tab-navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  /* top: 0; */
  /* z-index: 100; */
}

.tab-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.toggleText {
  font-variant: small-caps;
  letter-spacing: 1px;
  font-size: 0.9em;
  padding: 1rem 3px;
  /* color: rgb(86, 86, 103); */
}
.toggleText:hover {
  color: #207e11;
}
.pageContentsButton {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #28a745;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: rgb(86, 86, 103);
}

.pageContentsButton:hover {
  background-color: #28a74550;
}
.pageContentsButton.active {
  background-color: #28a74550;
  color: #207e11;
}
.toggleContent {
  display: none;
  /* background-color: green; */
}
.visible {
  display: block;
}
@media print {
  .noprint {
    display: none !important;
  }
}
