#chart {
  width: 100%;
  height: 100%;
  max-height: 100%;
  margin: auto;
}
#chart_tooltip {
  position: absolute;
  display: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px;
  box-sizing: border-box;
  font-size: 12px;
  text-align: left;
  z-index: 1000;
  pointer-events: none;
  border: 1px solid gray;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Trebuchet MS", Roboto, Ubuntu,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#trades {
  display: block;
  height: 100%;
  max-height: 100%;
  overflow: scroll;
  font-size: 0.75rem;
}
.trades-group {
  border-bottom: 1px solid gray;
}
tr.t-win td {
  background-color: green;
}
tr.t-loss td {
  background-color: red;
}
.chk-adjust {
  margin-top: 0.75rem;
  margin-left: 1rem !important;
  margin-right: 1rem;
}
