body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

nav input[type="search"] {
    padding: 5px;
}

.recipe-image {
    max-width: 100%;
    height: auto;
}

header h1 {
    margin: 0;
    color: #ffdb58; /* Mustard color */
    font-weight: bold;
    font-size: 2em;
}

.author {
    font-style: italic;
    font-weight: bold;
}

.recipe-title {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recipe-details, .ingredients, .instructions, .nutrition-facts, .similar-recipes {
    margin: 20px;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recipe-details p, .nutrition-facts p, .method {
    line-height: 1.6;
}

.ingredients ul, .instructions ol, .nutrition-facts ul {
    list-style-position: inside;
}

h2 {
    background-color: #98bbfb; /* Light green to match green beans */
    color: #000000; /* Black color */
    padding: 10px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 1.5em;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #e2e2e2;
    width: 100%;
}
