/* 📋 Section Header */
h2.section-title {
  margin-bottom: 12px;
  font-size: 1.4em;
  color: #343a40;
}

/* 🧪 Dish list/table */
#dishList {
  list-style: none;
  padding: 0;
}

#dishList li {
  padding: 12px;
  margin-bottom: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid #20c997;
  border-radius: 6px;
}

/* 🧾 Dish Metadata */
.dish-name {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 4px;
}

.dish-desc {
  color: #666;
  margin-bottom: 6px;
}

/* ✏️ Edit Form */
.edit-panel {
  margin-top: 10px;
  padding: 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

.edit-panel input,
.edit-panel textarea {
  margin-top: 6px;
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ✅ Save + Cancel Buttons */
.edit-panel button {
  margin-top: 10px;
  margin-right: 6px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button.save-btn {
  background-color: #28a745;
  color: white;
}

button.cancel-btn {
  background-color: #dc3545;
  color: white;
}

/* 🏪 Store Creator */
#storeForm {
  margin-top: 30px;
  padding: 20px;
  background-color: #e9ecef;
  border-radius: 6px;
}

#storeForm input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#storeForm button {
  background-color: #007bff;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
/* 🚀 Bottom Navigation */
.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) {
  .edit-panel input,
  .edit-panel textarea {
    font-size: 1em;
    padding: 10px;
  }

  .edit-panel button {
    width: 100%;
    margin-top: 10px;
  }

/* 🚀 Bottom Navigation */
.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;
}
}
