/* Menu styles for app.js rendering - scoped to not interfere with existing design */
#menu-container .menu-category {
  margin-bottom: 2rem;
}

#menu-container .menu-category h2 {
  border-bottom: 2px solid #111;
  padding-bottom: 0.35rem;
  margin-bottom: 0.75rem;
}

#menu-container .menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed #ddd;
}

#menu-container .menu-item:last-child {
  border-bottom: none;
}

#menu-container .menu-item-img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}

#menu-container .menu-item-info {
  flex: 1;
  min-width: 0;
}

#menu-container .menu-item-info .menu-name {
  display: block;
  font-weight: 500;
}

#menu-container .menu-item-info .menu-name-desc {
  font-size: 0.85rem;
  color: #666;
}

#menu-container .menu-price {
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;
}

#menu-container .error-message {
  color: #b91c1c;
  font-weight: 500;
}
