/* static/style.css */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background: #f6f6f6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  background: #ffffff;
}

h1 {
  margin-top: 0;
}

.menu-list {
  margin-top: 16px;
}

.menu-item {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.menu-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-name {
  font-size: 16px;
  font-weight: 500;
}

.menu-price {
  font-size: 14px;
  color: #666;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-actions button {
  width: 32px;
  height: 32px;
}

.menu-actions .qty {
  min-width: 24px;
  text-align: center;
}

.remark {
  width: 100%;
  margin-top: 4px;
  padding: 4px 6px;
  font-size: 12px;
}

.cart-panel {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px;
  border-top: 1px solid #eee;
  margin-top: 16px;
}

#submit-order-btn {
  margin-top: 8px;
  width: 100%;
  padding: 10px;
  background: #0070f3;
  color: #fff;
  border: none;
  border-radius: 4px;
}

#message {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.orders-table th,
.orders-table td {
  border: 1px solid #ddd;
  padding: 6px;
  vertical-align: top;
}

.orders-table th {
  background: #fafafa;
}

.orders-table button {
  font-size: 12px;
  padding: 4px 8px;
}
