body {
    font-family: 'Montserrat', sans-serif;
}
.container {
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

.recipe-list, .extras-list, .ingredients-list {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.recipe, .extra {
    display: flex;
    gap: 1rem;
}

.selected-meals-list, .selected-extras-list {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}
.text {
    font-size: 1.1rem;
    font-weight: 400;

}
.shopping-list {
    padding-top: 1rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.input {
    width: 50px;
    padding: 0.5rem 1rem;
    background-color: #c0c0c0; 
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.decrease-button, .increase-button {
    padding: 0.5rem 1rem;
    background-color: #808080;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.shopping-button {
    padding: 0.5rem 1rem;
    background-color: #808080;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;

}
@media (max-width: 800px) { 
    .container { 
        grid-template-columns: 100%; }
}