body {
  max-width: 62.5rem;
  margin: 0 auto;
  background-color: #fffff0;
  /* Set body styles as needed */
}
 .progressreports {
      max-width: 800px;
      display: flex;
      text-align: left;
      justify-content: center;
      margin: 10px auto 10px auto;
      /* outline: 2px dashed black; */
}

.flex-walkcontainer {
  display: flex;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  /* outline: 2px dashed black; */
  color: black;
  font-size: 1.1rem;
  text-align: justify;
}
.small-image {
  width: 350px; /* Adjust the size as needed */
  height: auto;
  float: left;
  margin-right: 10px;
  /* cursor: pointer; */
  border: 5px solid red;
  border-radius: 0.5rem;
}
.overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 215, 255, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border: 5px solid red;
  border-radius: 0.5rem;
}
.expanded-image {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid red;
  border-radius: 0.5rem;
}
button {
  background-color: blue;
  color: white;
  position: absolute;
  padding: 3px 5px;
  border: 2px solid red;
  border-radius: 0.5rem;
  cursor: pointer;
  z-index: 999; /* Ensure the button is above the overlay content */
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: blue;
  font-size: 3rem;
  cursor: pointer;
}
span {
  color: red;
  font-weight: 900;
}
fieldset {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0.25rem;
  padding-bottom: 40px;
}
legend {
  border: 2px solid rgb(0, 0, 0);
  border-radius: 0.5rem;
  padding: 0 0.5rem;
}
legend h2 {
  font-size: 0.95rem;
  line-height: 0;
  
}
@media (max-width: 500px) {
  legend h2 {
    font-size: 0.75rem;
    line-height: 0; 
  }
}