diff --git a/src/MasterMix/index.tsx b/src/MasterMix/index.tsx
index 9e24662a..8ff27208 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,12 @@ export {
PipettingLossByFactor,
} from './types';
+const MasterMixTable = styled(Table)`
+ .total-volume-row {
+ background-color: lightgrey;
+ }
+`;
+
/**
* The reactants can be clicked and marked as pipetted.
*/
@@ -43,13 +50,17 @@ export function MasterMix(props: MasterMixProps) {