.left-menu {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 20px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.menu-button {
  background-color: #f0f0f0;
  border: none;
  padding: 5px 5px;               /* ✅ เพิ่ม padding แนวนอนให้พอดี */
  border-radius: 8px;
  font-family: 'Prompt', sans-serif;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  display: flex;                   /* ✅ ใช้ flex แทน inline-block */
  align-items: center;            /* ✅ จัดให้ข้อความอยู่กลาง */
  white-space: nowrap;            /* ✅ ไม่ให้ขึ้นบรรทัดในปุ่ม */
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-button:hover {
  background-color: #e0e0e0;
  transform: translateY(-1px);
}