.container {
  padding: 10px;

  min-height: 100vh;
  font-family: 'Lato', sans-serif;
}

.header {

  padding: 10px 15px;

  margin-bottom: 10px;
}

.title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.card {
  background: white;
  border-radius: 4px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.selectionLink {
  color: #3b82f6;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.metaInfo {
  font-size: 12px;
  color: #333;
  margin-bottom: 15px;
}

.statusRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.statusLabel {
  text-align: right;
  font-size: 12px;
  color: #666;
}

.statusValue {
  font-weight: bold;
  font-size: 14px;
}

.won {
  color: #22c55e;
}

.lost {
  color: #ef4444;
}

.detailsTable {
  width: 100%;
  margin-bottom: 15px;
}

.tableHeader {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.tableValue {
  font-size: 13px;
  color: #333;
  padding-bottom: 15px;
}

.subtotalsCard {
  background-color: #e5e5e5;
  padding: 15px;
  margin-top: 20px;
  /* Gap between white and grey sections */
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.subtotalRow {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.netTotalRow {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #999;
}

.loading {
  text-align: center;
  padding: 20px;
  color: #666;
}

.error {
  text-align: center;
  padding: 20px;
  color: #ef4444;
}