nav {
  justify-content: flex-end;
}

#menu-buttons {
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  min-height: 65svh;
  width: 100%;
}

#search-history {
  color: black;
  min-width: 100px;
  max-width: 80vw;
  display: flex;
  flex-direction: column;
}
#search-history > *:first-child {
  display: inherit;
}

#clear-search-history {
  background-color: transparent;
  color: blue;
  margin-left: auto;
  border-radius: 0.25rem;
  height: auto;
  font-weight: lighter;
  padding: 0.25rem;
  display: inherit;
}
#clear-search-history:hover,
#clear-search-history:focus {
  background-color: #ed0000;
  color: white;
}
.dark-mode #clear-search-history {
  color: orange;
}
.dark-mode #clear-search-history:hover,
#clear-search-history:focus {
  color: white;
}

#search-list {
  margin-top: 1rem;
}
#search-list > li {
  font-size: 17px;
}
#search-list > li:hover,
li:focus {
  background-color: grey;
  transition-duration: 250ms;
  cursor: pointer;
}
#search-list > li:not(:last-child) {
  margin-bottom: 0.25rem;
}

#app-title {
  font-size: 50px;
}

#error-message {
  word-wrap: break-word;
  margin-bottom: 0.5rem;
  font-size: 17.5px;
}

#search-bar {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

#submit-btn {
  padding: 0.5rem;
}
