diff --git a/src/MasterMix/index.tsx b/src/MasterMix/index.tsx
index 9e24662a..7d287df2 100644
--- a/src/MasterMix/index.tsx
+++ b/src/MasterMix/index.tsx
@@ -1,5 +1,6 @@
import { toggleElement } from '@mll-lab/js-utils';
import React, { useState } from 'react';
+import styled from 'styled-components';
import { Card } from '../Card';
import { Table } from '../Table';
@@ -16,6 +17,14 @@ export {
PipettingLossByFactor,
} from './types';
+const TOTAL_VOLUME_ROW_CLASS = 'total-volume-row';
+
+const MasterMixTable = styled(Table)`
+ .${TOTAL_VOLUME_ROW_CLASS} {
+ background-color: lightgrey;
+ }
+`;
+
/**
* The reactants can be clicked and marked as pipetted.
*/
@@ -43,13 +52,17 @@ export function MasterMix(props: MasterMixProps) {