/* 🌍 Map container */
#map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid #ccc;
  margin-bottom: 20px;
}

/* 🍽️ Menu Panel */
#menuPanel {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#menuTitle {
  margin-top: 0;
  font-size: 1.4em;
  color: #007bff;
}

/* 🍲 Dish list */
#menuList {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menuList li {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

#menuList img {
  display: block;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* 🛒 Buttons */
.orderBtn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.orderBtn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* ✏️ Edit buttons (for owners) */
button.editDishBtn {
  background-color: #ffc107;
  color: #333;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
@media (max-width: 600px) {
  #map {
    height: 350px;
    width: 100%;
  }

  #menuPanel {
    padding: 15px;
  }

  #menuList li {
    flex-direction: column;
    text-align: center;
  }

  .orderBtn, .editDishBtn {
    width: 100%;
    margin-top: 8px;
  }
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
