/* Styling for the custom SVG checkboxes */
.ingredient-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ingredient-item img {
    width: 20px; /* Adjust size of SVG */
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.ingredient-item label {
    margin-bottom: 0; /* Keep label aligned */
}

/* Remove list style */
.ingredients-list {
    list-style-type: none;
    padding: 0;
}
