details {
  border: 1px solid;
  padding: 0 1rem;
  background: white;
}
details + details {
  border-top: none;
}
details[open] {
    padding-bottom: 1em;
}  
summary {
  padding: 1rem 2em 1rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
}


/* cascade layer: page setup. Doesn't impact the accordion */
@layer setupPage {
  
:root {
  font-size: 112.5%;
  line-height: 1.5;
}
body {
  background: #a4bacc99;
  color: #226daa;
  font-family: Tahoma, Verdana, sans-serif;
  margin: 1rem;
    width: 68em;
  max-width: 98vw;
  font-size: 11pt;
}
* {
  box-sizing: border-box;
}

aside {
  width: 68em;
  max-width: 98vw;
}
}
slot:not([name]) {
  display: revert;
}

.button {
  background-color: #226daa; /* Green */
  border: none;
  color: white;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius:10px;
}
.button:hover {
  background-color: #164368;
  color: white;
}
.button2 {
  background-color: #226daa; /* Green */
  border: none;
  color: white;
  padding: 3px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius:10px;
}
.button2:hover {
  background-color: #164368;
  color: white;
}
input[type="radio"],
input[type="checkbox"] {
	transform: scale(1.1);
	accent-color: #226daa;
}
input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  background-color: #c1e3fe;
  color: #164368;
  font-size: 18px;
}
input::placeholder {
  font-weight: bold;
  opacity: 0.4;
  color: #164368;
}