body {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f4f4;
}

h1, h2 {
    color: #333;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

select, button {
    padding: 10px;
    margin-bottom: 15px;
    min-width: 200px; /* Adjust as needed */
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #5cb85c;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #4cae4c;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#menuSection {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9e9e9;
    border-radius: 5px;
}

#orderList {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#orderList li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

#orderList li:last-child {
    border-bottom: none;
}
/* Add to your existing CSS */
#ingredientCostList > li > ul { /* Target the nested UL inside the main ingredient list LI */
    margin-left: 20px;
    font-size: 0.9em;
    list-style-type: disc; /* Or 'circle' */
    margin-top: 3px;
    color: #555; /* Slightly dimmer color for ingredients */
}

#ingredientCostList > li > span { /* Style the main info line */
    font-weight: bold;
    display: block; /* Ensures the UL below appears on a new line */
}

#ingredientCostList > li > p { /* Style the 'not available' message */
    margin-left: 20px;
    font-size: 0.9em;
    font-style: italic;
    color: #888;
}