* {
  box-sizing: border-box;
}

body {
  color: #333333;
  background-color: rgb(240, 240, 240);
  font-family: Arial, Helvetica, sans-serif;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  min-height: 99vh;
}

.resultTable {
  display: flex;
  flex: 1;
}

.container {
  flex-grow: 1;
}

.row {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  align-items: center;
}

.col-2 {
  flex: 2 2 66%;
  padding-left: 4px;
  padding-right: 4px;
}

.col-1 {
  flex: 1 1 33%;
  padding-left: 4px;
  padding-right: 4px;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

/* .select-checkbox option::before {
  content: '\2610';
  width: 1.3em;
  text-align: center;
  display: inline-block;
}

.select-checkbox option:checked::before {
  content: '\2611';
} */

label {
  width: 100%;
}

img {
  cursor: pointer;
}

input,
button,
select {
  margin: 5px;
  padding: 4px;
  border: 1px solid #cccccc;
  width: 100%;
  height: 100%;
}

input[type="radio"] {
  width: 20px;
}

button:hover {
  cursor: pointer;
  color: white;
  background-color: #888888;
}

footer {
  background: lightgray;
  border-top: 1px solid #000;
  margin-top: 16px;
  padding: 4px;
  display: flex;
  flex-direction: row;

  justify-content: space-between;
}

header {
  margin-top: 16px;
  margin-bottom: 16px;
}

a {
  cursor: pointer;
}

table {
  min-width: 1000px;
  width: 100%;
  overflow: auto;
}

td {
  padding-right: 6px;
}

tr > th {
  text-align: left;
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: left;

  border-top: 1px solid rgb(119, 119, 119);
  padding-top: 20px;
}

nav a {
  margin-right: 4px;

  min-width: 100px;
  /* background-color: lightgrey; */
  text-align: left;
  text-decoration: none;
  padding: 10px;
  cursor: pointer;
}

p {
  padding: 0px;
  padding-left: 6px;
  margin: 6px 10px 6px 0px;
  text-align: left;
}

footer p {
  font-size: 12px;
}

h1 {
  margin-bottom: 16px;
}

.help {
  color: darkblue;
}
.about {
  color: darkgreen;
}

.pic {
  width: 100%;
  border: 3px solid black;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: left;
}
