/* Body defaults */
body {
  font-family: Helvetica, serif;
  font-size: 18px;
  color: black;
  line-height: 1.2;
  padding-top: 30px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: white;
  text-align: left; /* force left alignment */
}

/* Ensure first/last children margins */
body > *:first-child {
  margin-top: 0 !important; 
}
body > *:last-child {
  margin-bottom: 0 !important; 
}

/* Links */
a {
  color: #7B68EE; 
text-decoration: none;}
a:hover {
  background-color: #6624f8;
  color: #24e4f8; }
a.absent {
  color: #6495ED; }
a.anchor {
  display: block;
  padding-left: 30px;
  margin-left: -30px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0; }


h1 {
  font-size: 40px;
  color: #F54927; }

h2 {
  font-size: 30px;
  /*border-bottom: 1px solid #cccccc;*/
  color: #F54927; }

h3 {
  font-size: 18px; }

h4 {
  font-size: 16px; 
  border-bottom: 1px solid #cccccc;
  color: #F54927;}

h5 {
  font-size: 14px; 
  color: #F54927; }

h6 {
  color: #777777;
  font-size: 14px; }


.spacer {
  margin-top: 2rem;
}

.linespacer {
  margin-top: .2rem;
}

.details-summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 30px;
  color: #7B68EE;
  list-style: none; /* removes default marker */
}

/* caret before text */
.details-summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.5em;
  transition: transform 0.2s ease;
}

/* rotate when open */
details[open] .details-summary::before {
  transform: rotate(90deg);
}

/* remove browser marker (Safari/Chrome) */
.details-summary::-webkit-details-marker {
  display: none;
}

.footer-image {
  display: block;
  margin: 2rem auto 0 auto; /* top margin + center */
  width: 400px;             /* exact width you want */
  max-width: 100%;          /* ensures it never overflows container */
  height: auto;             /* keep aspect ratio */
}

.footer-text {
  display: block;
  font-size: 10px;
  text-align: center;
  margin: 2rem auto 0 auto; /* top margin + center */
  width: 1000px;             /* exact width you want */
  max-width: 100%;          /* ensures it never overflows container */
  height: auto;             /* keep aspect ratio */
}
