.FalseH1,
.FalseH2,
.FalseH3,
.FalseH4 {
  color: #ffffff; /* Bright white text for contrast */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* Subtle shadow for depth */
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
}

.FalseH1 {
  font-size: 2em;
}

.FalseH2 {
  font-size: 1.5em;
}

.FalseH3 {
  font-size: 1.25em;
}

.FalseH4 {
  font-size: 1.1em;
}

.HeaderIcon {
  display: inline-block;
  vertical-align: text-bottom; /* or middle or baseline */
  max-height: 1.2em;         /* Scales with text */
  margin-right: 0.5em;
  opacity: 0.85;
  filter: brightness(0.9);
}



.ThumbImage {
  z-index: 10;
  -moz-box-shadow: 2px 0 2px #666;
  -webkit-box-shadow: 2px 0 2px #666;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);
  margin: 5px 30px 5px 30px
}
.ThumbImageRotateRight {
  -moz-box-shadow: 2px 0 2px #666;
  -webkit-box-shadow: 2px 0 2px #666;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);
  margin: 5px 30px 5px 30px;
  transform: rotate(15deg)
}
.ThumbImageRotateLeft {
  -moz-box-shadow: 2px 0 2px #666;
  -webkit-box-shadow: 2px 0 2px #666;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);
  margin: 5px 30px 5px 30px;
  transform: rotate(-15deg)
}
.image-left {
  z-index: 10;
  float: left;
  width: 25%;
  margin: 0 1em 1em 0;
  display: block
}
.image-right {
  z-index: 10;
  float: right;
  width: 25%;
  margin: 0 0 1em 1em;
  display: block
}
.image-center {
  display: block;
  margin: 0 auto 1em auto;
  width: 25%;
  float: none
}
#image-popover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000
}
#image-popover.popover-visible {
  display: flex
}
.popover-content {
  background: #fff;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  max-height: 90%;
  position: relative
}
.popover-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto
}
#popover-caption {
  margin-top: .5em;
  font-size: 1em;
  color: #333
}
.popover-close {
  position: absolute;
  top: .25em;
  right: .5em;
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
  cursor: pointer
}