body { /* Style for the application example, not the tutorial page itself */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFF8DC; /* Cornsilk - warm light yellow */
    color: #5C4033; /* Dark Brown */
    margin: 0;
    padding: 0; /* Reset padding for app body if it's standalone */
}

.app-example-container header { /* Style for the header within the app example */
    background-color: #FFA07A; /* LightSalmon */
    color: white;
    padding: 1em;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

.app-example-container header h1 {
    margin: 0;
    font-size: 1.8em;
}

.app-example-container .form-section, .app-example-container .list-section {
    background-color: #FFFACD; /* LemonChiffon */
    padding: 15px;
    margin: 15px;
    border-radius: 6px;
    border: 1px solid #FFEFD5; /* PapayaWhip border */
}

.app-example-container h2 {
    color: #D2691E; /* Chocolate */
    border-bottom: 1px solid #FFDAB9; /* PeachPuff */
    padding-bottom: 3px;
    font-size: 1.5em;
}

.app-example-container label {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    color: #A0522D; /* Sienna */
}

/* Inputs are already styled by the tutorial's global .app-example-container styles */

.app-example-container #formMessage {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.app-example-container #formMessage.success {
    background-color: #D4EDDA; /* Light green */
    color: #155724; /* Dark green */
    border: 1px solid #C3E6CB;
}

.app-example-container #formMessage.error {
    background-color: #F8D7DA; /* Light red */
    color: #721C24; /* Dark red */
    border: 1px solid #F5C6CB;
}

.app-example-container #recipesList .recipe-card { /* Re-using from tutorial styles for consistency */
    background-color: #FFF8E1;
    border: 1px solid #FFD54F;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.app-example-container #recipesList .recipe-card h4 {
    color: #D2691E;
    margin-top: 0;
    margin-bottom: 8px;
}
.app-example-container #recipesList .recipe-card p {
    margin-bottom: 5px;
    font-size: 0.9em;
}
.app-example-container #recipesList .recipe-card strong {
    color: #A0522D; /* Sienna */
}

.app-example-container footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    font-size: 0.8em;
    color: #777;
    border-top: 1px solid #FFDAB9; /* PeachPuff */
}