#combos, #checkboxes, #datesels {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 1% 0;
}

#datesels {
  justify-content: center;
}
#startdate {
  margin-right: 10px;
}
#enddatelabel {
  margin-left: 10px;
}
.eve {
  background-color: black;
  color: yellow;
}
.day {
  background-color: deepskyblue;
}

article {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  border: 0px solid yellow;
  border-bottom: 1px solid black;
  padding: 1%;
}

article section {
  border: 0px solid orange;
  display: flex;
  flex-direction: column;

}

article section .date {
  flex-grow: 1;
}

article .comp {
  flex-grow: 2;
  text-align: right;
}

article section .comp_inline {
  display: none;
}

article section .match {
  font-size: 20pt;
  font-weight: normal;
}

article section * {
  border: 0px solid green;
}

#output_area {
  max-width: 1000px;
  height: 75vh;
  overflow-y:auto;
  margin: 0 auto;
}
