.CodeMirror {
  border: 1px solid #eee;
  height: inherit;
  font-size: 12px;
}

.inputcontainer {
  /* width: 250px; Width of the outside container */
  float: left;
}

.inputcontainer span{
  color:green;
}

.controlbox{
  border-radius: 25px;
  margin-bottom: 20px;
  position: relative;
  width:90%;
  /* text-align: center; */
}

/* tell the SVG path to be a thin blue line without any area fill */
path {
  stroke: steelblue;
  stroke-width: 1;
  fill: none;
}

.input {
  width: 30%; 
  height: 25px; 
  background: #d3d3d3;
  color: #1a2e58;
  font-weight: bold;
  text-align: right;
}

.axis path, 
.axis line {
  fill: none;
  stroke: black;
  shape-rendering: crispEdges;
}

.axis text {
  font-family: sans-serif;
  font-size: 8px;
}

.chart {
  width: 100%;
  height: 100%;
}

.description{
  font-size: 9pt;
  text-align: justify; 
  color: #1a2e58;
  font-family: 'Roboto', sans-serif;
}

.vertical_line{
  stroke: orange;
  stroke-width: 5;
}

.no_scale_point{
  stroke: black;
  stroke-width: 1;
}

.line_plot{
  stroke-width: 7;
  stroke: limegreen;
}

.line_plot_red{
  stroke-width: 3;
  stroke: red;
}

#tooltip{
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  height: 250px;
  width: 300px;
  border-width: 1px;
  visibility: "hidden";
  font-family: 'Roboto', sans-serif;
  font-size: 8pt;
}

.plotconsole{
  background-color: lightskyblue;
  border-style: dashed;
  border-width: 1px;
  border-color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 8pt;
  color: black;
}