.symbol {
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-left: 4px;
}

body {
  font-family: 'Trebuchet MS', sans-serif;
  background: #F9F4E4;
  margin: 0;
  padding: 20px;
  color: #375139;
}

header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: -20px;
}

.logo-title {
  display: flex;
  align-items: right;
  gap: 10px;
}

.logo {
  height: 50px;
  padding-bottom: 20px;
  align-items: right;
}

.search-filter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.search-filter input {
  flex-grow: 1; /* search bar takes available space */
  padding: 8px;
  font-size: 14px;
  border-radius: 5px;
  border-width: 0.1px;
  background-color: #fffaf0;
  border-color: #d3cbb8;
}

.search-filter select {
  width: 120px; /* fixed width for dropdown */
  padding: 8px;
  font-size: 14px;
  border-radius: 5px;
  border-width: 0.1px;
  background-color: #fffaf0;
  border-color: #d3cbb8;
}

.menu-category {
  border-top: 0px solid #ccc;
  margin-top: 10px;
}

.price {
  font-weight: bold;
  margin-top: 10px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 10px;
  padding-top: 2px;
  border-radius: 10px;
  background: #FCB040;
}

.category-header-2 {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 10px;
  padding-top: 2px;
  border-radius: 10px;
  background: #BDBDBD;
  color: white;
}

.arrow.rotated {
  transform: rotate(180deg);
}

.category-items {
  display: none;
  padding: 10px;
}

.category-items.open {
  display: block;
}

.food-item {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  align-items: flex-start;
}

.food-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.food-title {
  flex: 1;
}

.item-image {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: 16px;
}

.food-description {
  display: none;
  margin-top: 8px;
  color: #444;
  flex-basis: 100%;
}

.food-description.open {
  display: block;
}

.food-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Ensures image stays at the top */
}

.food-info {
  flex: 1;
}

.food-image {
  width: 100px;
  height: auto;
  margin-left: 20px;
  border-radius: 8px;
}

.food-image-right {
  float: right;
  width: 100px;
  height: auto;
  margin-left: 15px;
  margin-top: 5px;
  border-radius: 8px;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #375139;
  color: #FCB040;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 10px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
#backToTop:hover {
  opacity: 1;
}

