.menus__content {
	display: grid;
	grid-template-columns: 50% 50%;
    text-align: center;
    align-items: center;
}

.menus__content--wrap {
    border: 8px solid #008062;
    margin: 25px;
	padding: 15px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
    .menus__content {
        grid-template-columns: 100%;
	}
}

.menus--img {
	max-height: 100%;
	max-width: 100%;
}

.menus__link {
	text-decoration: underline;
	color: #00a246;
}

.menus__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menus__content--wrap h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px; /* Adjust to be under the text */
    width: 100%;
    height: 2px;
    background-color: #008062;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-expand 2s ease forwards;
}

.menu-content{
	position: relative;
	width: auto;
}

.menu--img{
	border-style: solid !important;
	border-color: #008062 !important;
    border-width: 0px !important;
    border-radius: 25px 25px 25px 25px !important;
    border-top-style: solid !important;
    border-bottom-style: solid !important;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
    -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 11px 0px !important;
    border-top-width: 3px !important;
    border-bottom-width: 3px !important;
	height: 50vh !important;
	margin: auto;
}

@media screen and (max-width: 580px) {
	.menu--img{
		height: 30vh !important;
	}
}

.main__content--imgcontainer.menus__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 1000px) {
    .main__content--imgcontainer.menus__content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1000px) {
    .menus__grid {
        grid-template-columns: 1fr;
    }
}

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.ingredients-table th,
.ingredients-table td {
    border: 2px solid #008062;
    padding: 10px;
    text-align: left;
}

.ingredients-table th {
    background-color: #008062;
    color: white;
}