.menu-container{
	padding: 40px 0px;
}

.menu-inner{
	background-color: #e2ded5;
	padding: 30px;
}

.menu-selector{
	text-align: center;
	margin: 40px 0px;
}

.menu-selector select{
	border: none;
    width: 200px;
    border-bottom: 1px solid black;
    margin-left: 20px;
}


.menu-nav-list .menu-nav-link {
	padding-bottom: 0.25em;
}

.menu-nav-list .menu-nav-link.is-active {
	border-bottom: 1px solid var(--bs-body-color);
}

.menu-section{
	margin: 4rem 0;
}

.menu-title{
	margin: 3rem 0 0!important;
}

#menu-logo{
	width: 100%;
}

#menu-logo-container{
	max-width: 300px;
	margin: auto;
}

#menu-bottom-text{
	margin: auto;
	padding: 20px 0px;
}

#dietary-filters{
	margin: auto;
	padding: 30px;
}

#dietary-filters button{
	background: none;
	border: none;
}

.menu-inner{
	max-width: 700px;
	margin: auto;
}

.menu-item:not(:last-child) {
	margin-bottom: 1rem;
}

.drink-prices{
	align-self: baseline;
}

#menu-top-text, #menu-bottom-text{
	text-align: center;
    margin: 30px 0px;
}

.truncate {
  width: 200px;           /* set a width */
  white-space: nowrap;    /* prevent wrapping */
  overflow: hidden;       /* hide overflowed text */
  text-overflow: ellipsis; /* show "..." */
}

.price-grid{
  display: grid;
  grid-template-columns: repeat(var(--maxcols), minmax(0, 1fr));
  column-gap: .75rem;
  justify-items: right;
.price-cell { white-space: nowrap; }
.price-spacer { grid-column: span var(--span); } /* empty spacer to push cells right */
@media (max-width: 576px) { .price-grid { overflow-x: auto; } }