@media screen and (min-width: 800px) {
  #suchfeld {
    flex-wrap: nowrap;
  }

  #toolbar button {
    height: 25px;
    box-shadow: 5px 5px 5px #595;
  }
}

@media screen and (min-width: 610px) and (max-width: 800px) {
  #suchfeld {
    flex-wrap: wrap;
  }

  #toolbar button {
    height: 25px;
    box-shadow: 5px 5px 5px #595;
  }
}

@media screen and (min-width: 450px) and (max-width: 610px) {
  #suchfeld {
    flex-wrap: wrap;
  }

  #toolbar button {
    height: fit-content;
    box-shadow: 5px 5px 5px #595;
  }
}

@media screen and (max-width: 450px) {
  #toolbar {
    flex-wrap: wrap;
  }

  #suchfeld {
    padding-top: 15px;
    flex-wrap: wrap;
  }

  #toolbar button {
    height: fit-content;
    box-shadow: 5px 5px 5px #595;
  }
}

#toolbarContainer {
  top: 2rem;
  position: sticky;
}

#toolbarHamburger {
  padding: 4px 10px 0 10px;
  width: fit-content;
  background-color: #00e;
  box-shadow: 5px 5px 5px #555;
}

#toolbar {
  background-color: #00e;
  display: flex;
  padding: 0.5rem;
  width: 100%;
  /* left: 0%; */
  color: white;
  box-sizing: border-box;
}

#toolbar.beides {
  justify-content: space-between;
}

#toolbar.nurSuche {
  justify-content: flex-end;
}

#toolbar>* {
  width: fit-content;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
}

#abschnitte {
  display: flex;
  justify-content: space-evenly;
}

#abschnitte>* {
  margin: 0 5px;
}

#toolbar button {
  box-shadow: 5px 5px 5px #595;
}

#toolbar input {
  width: 3rem;
}

#suchfeld>* {
  margin: 0 5px;
}

#ergebnisFeld {
  overflow-y: scroll;
  max-height: 80vh;
  background-color: #00e;
  color: white;
  position: absolute;
  top: 2rem;
  right: 0;
  z-index: 2;
}

#ergebnisFeld>div {
  text-align: center;
  font-size: small;
  margin: 5px;
  background-color: aqua;
}

#ergebnisTabelle td,
#ergebnisTabelle th {
  padding: 0 1rem;
}

#ergebnisse,
#ergebnisFeldEntfernen {
  color: black;
}

tr[id] {
  width: 100%;
  background-color: aqua;
}

tr[data-id]:hover {
  background-color: #99e;
}

#toolbarAusblenden {
  color: white;
  background-color: #00e;
  position: absolute;
  padding: 5px;
  margin-top: 5px;
  box-shadow: 5px 5px 5px #555;
}