table.form td {

	padding-bottom: 1em;

}

.submit button {

	margin-bottom: 2em;

}

span.tag {
	display: inline-flex;
  background-color: var(--color_main_creamy_3);
  color: var(--color_main);
  padding: 0 .5em;
  font-size: .8em;
  border-radius: .5em;
	margin-right: .5em;
}

.order_container {
	/* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(20em, max-content)); */
  /* justify-content: center; */
  /* grid-gap: 1rem; */
	display: flex;
	flex-direction: column;
}

.order_container h2, .order_container h3{
	/* grid-column: 1/-1; */
	/* display: none; */
	/* flex-grow: 1; */
}

.order_day {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20em, max-content));
  justify-content: center;
  grid-gap: 1rem;
}

.order_entry {
	border: solid 1px var(--color_main_creamy_3);
	border-radius: 1em;
	padding: 1em;
	max-width: 20em;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order_entry form {
	display: flex;
	margin-top: 1em;
}

.order_entry form input {
	width: 15ch;
}

.order_entry table.form td{
	padding-bottom: 0;
}
.order_entry form button {
	background-color: var(--color_main_creamy_3);
	color: var(--color_main);
	margin-bottom: 0;
	display: inline-flex;
  height: 100%;
	justify-content: center;
  flex-direction: column;
}