*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 24px;
  background-color: #fff;
  color: #333;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
}

nav {
  border-bottom: solid 1px #eee;
}
nav ul {
  display: flex;
  gap: 8px;
  padding: 0;
  list-style-type: none;
}
nav ul li {
  padding: 4px 8px;
}
nav ul li.selected {
  background-color: yellow;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  border: none;
}
table.full {
  width: 100%;
}
th, td {
  padding: 16px;
  border: solid 1px #eee;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}
tr.sold td {
  background-color: #f6f6f6;
  color: #999;
}
td.image img {
  width: 100px;
  height: auto;
}
td.total-spent,
td.total-recouped,
td.net {
  text-align: right;
}

.chart {
  width: 100%;
}
