/* 全体リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f3f3f3;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.h1_text {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* テーブル */
.menu-table {
  width: 98%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-table th {
  background-color: #007BFF;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 16px;
}

.menu-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

/* 注文のまとまり（orderIdごと）の区切り */
.menu-table tr:first-child td {
  border-top: 2px solid #444;
}

/* 各 orderId の最初の行に上ボーダー */
.menu-table tr.order-start td {
  border-top: 3px solid #666;
}

/* No order */
.no-order {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-top: 50px;
}

/* ステータス列 */
.menu-table td:nth-child(4) {
  font-weight: bold;
}

/* ボタン */
.menu-table button {
  width: 90%;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 14px;
  border: 1px solid #999;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

/* Processing ボタン */
.menu-table button:first-child {
  background-color: #ffc107;
}
.menu-table button:first-child:hover {
  background-color: #e0a800;
}

/* Served ボタン */
.menu-table button:last-child {
  background-color: #28a745;
}
.menu-table button:last-child:hover {
  background-color: #218838;
}

/* カテゴリごとの色（1〜10） */
.category-1  { background-color: #ffe4e1 !important; }
.category-2  { background-color: #e0ffff !important; }
.category-3  { background-color: #f5f5dc !important; }
.category-4  { background-color: #e6e6fa !important; }
.category-5  { background-color: #fafad2 !important; }
.category-6  { background-color: #d3ffd3 !important; }
.category-7  { background-color: #ffe4b5 !important; }
.category-8  { background-color: #f0f8ff !important; }
.category-9  { background-color: #fff0f5 !important; }
.category-10 { background-color: #fdf5e6 !important; }

/* カテゴリ色を薄くしすぎないよう文字は濃く */
.menu-table td {
  color: #333;
}
