html {
  background-color: #71b6d9;
  color: #2e4b59;
}
#app {
  margin: auto;
  font-family: Helvetica;
}

#app > * {
  text-align: center;
}

.topControls {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.searchBox {
  text-align: center;
  padding: 5px;
  font-size: 16px;
  border: 2px solid rgb(60, 132, 150);
  border-radius: 5px;
  margin-left: auto;
}

.controlElement {
  display: block;
  text-align: left;
}

.dropdown {
  display: inline-block;
  font-size: 16px;
  padding: 0.3em 1em 0.3em 0.8em;
  color: #2e4b59;
  background-color: #86bdd9;
  border: 1px solid rgb(60, 132, 150);
  border-radius: 0.5em;
}

.columnHeader {
  display: block;
  font-size: 20px;
  border-radius: 5px;
  border: 2px;
  margin: auto;
  padding: 10px;
  text-align: center;
  background-color: #cfe0e8;
  color: black;
}

.greenButton {
  background: #86bdd9;
  background-color: #86bdd9;
  border-radius: 4px;
  border: 1px solid rgb(109, 147, 167);
  display: inline-block;
  cursor: pointer;
  color: #2e4b59;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 12px;
  margin: 5px;
  text-decoration: none;
}

.greenButton:active {
  position: relative;
  top: 1px;
}

.redButton {
  background-color: #d9aa71;
  border-radius: 4px;
  border: 1px solid rgb(145, 114, 76);
  display: inline-block;
  cursor: pointer;
  color: #2e4b59;
  font-size: 15px;
  font-weight: bold;
  padding: 6px 12px;
  margin: 5px;
  text-decoration: none;
}
.redButton:active {
  position: relative;
  top: 1px;
}

.bugs,
.fish {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.critter {
  display: inline-block;
  border: 2px solid rgb(38, 88, 95);
  width: 165px;
  padding: 10px;
  margin: 2px;
  border-radius: 5px;
  font-size: 14px;
  background-color: #87bdd8;
}

.collected {
  background-color: #87d8c0;
}

.datebox {
  display: grid;
  background: rgb(56, 125, 134);
  grid-template-columns: 40px 40px 40px 40px;
  text-align: center;
  border: 2px solid rgb(56, 125, 134);
  color: black;
  width: 160px;
  border-radius: 5px;
  justify-content: center;
}

.datebox > span {
  border: 1px solid rgb(56, 125, 134);
  border-radius: 5px;
}

.availability-date {
  background: lightcoral;
  padding: 5px;
}

.available {
  background: lightgreen;
}

.availability-time,
.location,
.fishShadow,
.value,
.name {
  color: black;
  display: flex;
  border: 1px solid rgb(38, 88, 95);
  padding: 1px;
  border-radius: 5px;
  justify-content: center;
  background-color: #b7d7e8;
}
