body { margin-bottom: 300px;
	background: #fed;
 }
 
table, td, th {
  margin-top: 10pt; margin-bottom: 10pt;
}

p.stacktrace { margin-left: 20pt; font-size: smaller;  }

span.link { color: blue; text-decoration: underline; cursor: pointer; }


body.flexbody { 
  background-image:url(CardChip-faded.png); 
  background-repeat: no-repeat; 
  background-position-y: -40px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.flexcontainer {
  display: flex;
  flex-wrap: wrap;
  width: 90%; /* Adjust width as needed */
}

.flexbox {
  display: flex;
  flex-direction: column;
  flex: 1 0 40%;
  align-items: center;
  margin: 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 15px;
	padding: 10px;
}


/* Specific style for a box to span two columns */
.flexbox.double {
    flex: 1 0 80%; /* Adjust to span two columns (30% + 30% + margin) */
}

.inner-flexbox {
  display: flex;
  flex-direction: row;
  gap: 16px; /* Optional: adds space between items */
}