




/*checkout-container*/
.checkout-container {
  display: flex;
  margin: 20px;
  padding: 16px; /* Increased padding for a larger appearance */
  align-items: center;
  justify-content: center;  
}

.order-summary {
  background-color: #fff8ef;
  margin: 5px;
  box-shadow: 0px 2px 2px black;
  padding: 16px; /* Increased padding to make the content area larger */
  border: 2px solid #E09132;
  font-size: 1.2em; /* Increased the overall font size */
}

#order-list {
  display: inline;  
  color: black;
  margin: 20px;
  align-items: center;
  justify-content: center;
  font-family: 'merienda', cursive;
  font-size: 1.2em; /* Increased font size for order list items */
}

.order-summary h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E09132;
  font-family: 'merienda', cursive;
  font-size: 1.5em; /* Increased font size for the heading */
}

.total {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 2px solid #E09132;
  color: #E09132;
  font-family: 'merienda', cursive;
  font-size: 1.2em; /* Increased font size for the total */
}






