.menu_container {
  position: sticky;
  background: #eeeeee;
  width: 94%;
  border-radius: 15px 15px 0px 0px;
  display: flex;
  justify-content: space-between;
  z-index: 500;
  height: 35px;
}

.menu_category_container {
  display: flex;
  list-style: none;
}

.menu_category {
  font-weight: bolder;
  cursor: pointer;
  padding: 0 10%;
  horiz-align: left;
}

.menu_item_container{
  position: absolute;
  list-style: none;
  display: none;
  z-index: 500;
  margin-top: 8px;
  margin-left: -40px;
  min-width: 100px;
}

.menu_item {
  background: #eeeeee;
  border: #A9C23F;
  font-weight: normal;
  padding: 5px;
}

.menu_search_container {
  /* nothing yet */
}

.menu_search {
  height: 70%;
  margin-top: 0.2em;
  float: right;
  border-radius: 10px 15px 0px 10px;
}

.menu_search_result {
  display: none;
  position: absolute;
  height: fit-content;
  background: white;
  border: thin solid #00488C;
  padding: 0.4em;
  right: 0.5em;
  margin-top: 3em;
  z-index: 999;
  overflow: visible;
}

.menu_search_result_option {
  display: inline-block;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
