@charset "UTF-8";
/* CSS Document */
.search-bar {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  border-radius: 4px;
  margin: 1em auto;
}
.column {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.column.left {
  width: 70%;
  padding-right: 10px;
}
.column.right {
  width: 30%;
}
.search-bar select, .search-bar input[type=date], .search-bar input[type=text], .search-bar button {
  padding: 10px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 10px;
  height: 40px;
  width: 100%;
}
.date-time-row {
  display: flex;
  gap: 10px;
}
#date-input {
  flex-grow: 7;
}
#time-select {
  flex-grow: 3;
}
#search-button {
  height: 90px;
  font-size: 1em;
}
#reset-button {
  border: none;
  height: 40px;
}
.search-bar button:hover {
  opacity: 0.8;
}
input::placeholder {
  color: #046FB8;
}
input::-ms-input-placeholder {
  color: #046FB8;
}
input:-ms-input-placeholder {
  color: #046FB8;
}
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
  }
  .column {
    width: 100%;
  }
  .column.right, .column.left {
    width: 100%;
    padding-right: 0px;
  }
  #search-button {
    height: 70px;
  }
  #reset-button {
    height: 40px;
  }
  .date-time-row {
    flex-direction: column;
  }
  #date-input, #time-select {
    flex-grow: 0;
  }
}


