.column {
  float: left;
  width: 0;
  min-width: 200px;
  margin: 12px 15px;
  flex-grow: 1;
}

.row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
}

body {
  font-family: Verdana, sans-serif;
}

#species-input {
  border-radius: 0.25rem;
  background: whitesmoke;
  border: 2px solid lightgrey;
  margin: 12px 15px;
  padding: 12px 15px;
}

.option-box {
  border-radius: 0.25rem;
  border: 2px solid lightgrey;
  height: 100%;
  box-sizing: border-box;
  background-color: whitesmoke;
  padding: 12px 15px;
}

.result-header {
  background-color: #C8C8C8;
  text-align: left;
}

.result-cell-odd {
  background-color: #f3f3f3;
}

.textarea-wrapper {
  margin: 12px 0px 12px 0px;
}

.input-textbox {
  width: 100%;
  max-width: 100%;
  height: 200px;
  vertical-align: bottom;
  box-sizing: border-box;
  border: 2px solid lightgrey;
}

#collection-availability {
  border: 2px solid lightgrey;
  margin: 12px 0px 12px 0px;
  padding: 0.25rem;
  max-height: 190px;
  overflow-y: auto;
  background-color: white;
}

.collection-even {
  background: white;
}

.collection-odd {
  background: #F0F0F0;
}

.option-description {
  color: grey;
}

.search-wrapper {
  margin: 1rem
}

#search {
  width: 100%;
  font-size: large;
  font-weight: bold;
  padding: 0.5rem;
}

.result-table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0; /* collapse breaks the rounded corners. */
  border-bottom: 2px solid lightgrey;
}

.result-table tbody tr {
  cursor: pointer;
}

.result-header-cell {
  border-top: 2px solid lightgrey;
  border-left: 2px solid lightgrey;
  border-bottom: 2px solid lightgrey;
  background-color: whitesmoke;
  text-align: left;
}

.result-table th:first-of-type {
  border-radius: 0.25rem 0rem 0rem 0rem;
}

.result-table th:last-of-type {
  border-radius: 0rem 0.25rem 0rem 0rem;
  border-right: 2px solid lightgrey;
}

.result-table td:first-of-type {
  border-left: 2px solid lightgrey;
}

.result-table td:last-of-type {
  border-right: 2px solid lightgrey;
}

.result-cell-odd {
  background-color: whitesmoke;
}

.result-table th,
.result-table td {
  padding: 12px 15px;
  word-wrap: break-word;
}

.result-row-expanded {
  padding: 0px 15px 12px 15px !important;
}

.result-expanded {
  border-radius: 0.25rem;
  background-color: gainsboro;
  overflow: hidden;
  padding: 0px 15px
}

.tmp-expanded {
  display:flex;
  justify-content:center;
}

.pages-button {
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

.loader {
  display: inline-block;
  border: 0.2em solid silver;
  border-top: 0.2em solid transparent;
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer {
  display: flex;
  justify-content: center;
}
