body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-size: 20px;
}
input {
    font-size: 20px;
}

h1 {
    text-align: center;
}

.recipe_list table {
    font-size: 30px;
    width: 100%;
    border-collapse: collapse;
}
.recipe_list tr {
    list-style-type: none;
    cursor: pointer;
}
.recipe_list td {
    padding: 0.5em;
}
.recipe_list .nutritional {
    font-size: 60%;
    text-align: right;
}
.recipe_list tr:nth-child(even) {
    background-color: #ffffff;
}
.recipe_list tr:nth-child(odd) {
    background-color: #eeeeee;
}

.recipe {
    display: none;
}

.back {
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.recipe_info {
    padding-bottom: 1em;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

#nutritional {
    font-size: 80%;
    float: left;
}

.portions {
    float: left;
}
.portions input {
    width: 2em;
    text-align: center;
}

.ingredients {
    margin: 0 auto;
    border-collapse: collapse;
}
.ingredients tr td {
    padding: 0.4em;
}
.ingredients tr:nth-child(even) {
    background-color: #f9f9f9;
}
.ingredients tr:nth-child(odd) {
    background-color: #eeeeee;
}

.steps {
    margin: 0 auto;
    max-width: 600px;
}

.steps li {
    padding: 0.4em;
}

div.log {
    margin: 0 auto;
    white-space: pre;
    font-family: monospace;
    width: 100%;
    color: black;
}