/* Warm pizzeria palette layered on top of simple.css variables. */

:root {
  --accent: #c0392b;
  --accent-bg: #fdf6ec;
  --bg: #fffdf9;
  --text: #2b2320;
  --text-light: #6b5d54;
  --border: #e6d9c8;
  --marked: #ffd9a0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #ff7a5c;
    --accent-bg: #2a201c;
    --bg: #191412;
    --text: #ece2da;
    --text-light: #b3a296;
    --border: #3d322c;
    --marked: #6b4a1f;
  }
}

/* Menu tables: item on the left, price hard right, no zebra striping. */
td:last-child {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  vertical-align: top;
}

td small {
  color: var(--text-light);
}
