.grid line {
    stroke: #ccc;
    stroke-opacity: 0.7;
  }
  
  /* Need to discuss this with the team */
  .axis path,
  .axis line {
    stroke: none; /* Changes the color of the axis lines */
  }
  
  .grid .tick {
    stroke: lightgrey; /* Changes the color of the gridlines */
    stroke-opacity: 0.7;
    shape-rendering: crispEdges; /* Makes the gridlines appear more crisp */
  }
  .grid path {
    stroke-width: 0; /* Removes the line along the y-axis */
  }

  .legend-text{
    font-size: 16px;
    margin-bottom: 0px;
    fill: #707071;
    min-height: 25.594px;
  }

  .ons-input{
    width: 300px;
    margin-right: 12px;
    margin-bottom: 12px;
  }

  .clear-button{
    position: absolute;
    left: 240px;
    bottom: 10px;
    z-index: 99;
    border: none;
    background-color: white;
    pointer-events: all;
    cursor: pointer;
  }

  .selected{
    stroke-width: 4;
    stroke: orange;
  }

  .deselected{
    stroke: #C6C6C6;
    stroke-width: 1;
  }

  #legend{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  #legend2{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
  }

  .select-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .legend-container{
    min-height: 100px;
  }
  