html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

table {
  width: 100%;
}

td {
  text-align: center;
  padding: 10px 0;
}

button {
  margin: 20px 0;
}

.increment-button {
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 15px;
  border-radius: 500px;
}

.category-header {
  font-weight: bold;
  font-size: 1.5em;
  background-color: #f0f0f0;
}

td.item {
  width: 25%;
}

img.itemimg {
  width: 100%;
  max-width: 50%;
}

td.quantity {
  width: 30%;
}

input.quantity-input {
  width:50px;
}

td.total-price {
  width: 5%;
}

div.item {
  text-align: center;
}

img.itemimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

td.item > div {
  padding: 2px 0;
}

/* HEADER */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

#header button {
  padding: 1em 2em;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

#header span {
  font-size: 1.5em;
}

#itemTable {
  margin-top: 120px; /* Adjust this value to match your header height */
}


#footer {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #f2f2f2;
}

#footer button {
  padding: 1em 2em;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
}

#footer span {
  font-size: 1.5em;
}