/* view */
.plot-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sub-heading {
  text-align: center;
  color: #04519b;
}

h3 {
  font-size: 30px;
}

.plot-wrapper {
  display: block;
  margin: 0 auto;
  position: relative;
  background: white;
  padding: 10px;
  max-width: 800px;
  width: 800px;
}

.plot-title {
  text-align: center;
  padding-top: 10px;
}

.plot {
  position: relative;
  display: flex;
  margin: 0 auto;
  background: white;
  max-width: 750px;
  width: 750px;
  height: 500px;
}

.y-axis-label {
  position: absolute;
  display: block;
  transform: rotate(-90deg);
  left: 0px;
}

.x-axis-label {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 800px;
  padding: 10px;
  background: white;
  text-align: center;
}

.tooltip {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 5px;
  font-size: 12px;
  pointer-events: none;
}