:root {
  --flex_b: #d6e1ef;
  --cap: #640000;
  --cap_font: Tahoma, Arial, sans-serif;
}
body {
  background-color: #eef5fd;
  margin: 20px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}

caption {
  color: var(--cap);
  font-family: var(--cap_font);
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
}

.caption{
  color: var(--cap);
  font-family: var(--cap_font);
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  padding: 4px 0px;
}

div{
 padding: 25px 15px;
 border-radius: 10px;
 font-size: 14px;
 text-align: center;
}

.flex-container {
  display: flex;
  justify-content: space-around + safe;
  flex-wrap: wrap;
  align-items: stretch + safe;
  align-content: stretch + safe;
  gap: 20px;
}
.flex-item0{
  order: 1;
  flex-grow: 1;
  background-color: var(--flex_b);
}
.flex-item1{
  order: 1;
  flex-grow: 1;
  background-color: var(--flex_b);
}
.flex-item2{
  order: 3;
  flex-grow: 1;
  background-color: var(--flex_b);
}
.flex-item3{
  order: 4;
  flex-grow: 1;
  background-color: var(--flex_b);
}
.flex-item4{
  order: 4;
  flex-grow: 1;
  background-color: var(--flex_b);
}

.flex-item5{
  order: 5;
  flex-grow: 1;
  background-color: var(--flex_b);
}

.flex-item6{
  order: 6;
  flex-grow: 1;
  background-color: var(--flex_b);
}

textarea {
  display: block;
  border-collapse: collapse;
  border: 0px;
  background-color: #eef5fd;
  color: black;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  min-width: 570px;
  min-height: 270px;
  height: inherit;
  padding: 4px;
  overflow: auto;
  resize: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

#ja3s { 
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  font-size: 14px;
}

table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 1px 1px;  
  margin: auto;
  font-size: inherit;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}
tr:first-of-type td:first-of-type{
  border-top-left-radius: 5px;
}

tr:first-of-type td:last-of-type {
  border-top-right-radius: 5px;
}

tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 5px;
}

tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 5px;
}
tr:nth-child(odd) {
  background-color: #eef5fd;
}

tr:nth-child(even) {
  background-color: #e1edfb;
}

td {
  padding: 6px;  
  font-size: inherit;
}

#title {
  color: #688bbb;
  font-weight: bold;
  font-size: 14px;
}
