* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 20px;
}

.container {
  display: flex;
}

.container > p, table {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0;
  margin-right: 20px;
  font-size: 14px;
}

thead th {
  background-color: white;;
}

table thead tr:nth-child(1) th {
  position: sticky;
  top: 0;
  z-index: 10;
}

p {
  width: 300px;
}

table {
  width: 850px;
}

select {
  margin: 1em 0;
  width: 100%;
  padding: 5px;
  border: 1px solid black;
  border-radius: 3px;
}

td, th {
  text-align: left;
  padding: 5px;
  border-bottom: 1px dotted #ddd;
}

td:nth-child(4n) {
  font-weight: bold;
}

td:first-child, tr:last-child {
  font-weight: bold;
}

.negative {
  color: red;
}

.positive {
  color: green;
}