body, #scatterplot{
    background: #242426;
}
#scatterplot svg rect{
    fill: #242426; /*subject to change*/
    stroke-width: 0.25px;
}

.axis path,
.axis line {
    fill: none;
    shape-rendering: crispEdges;
}
.axis text{
    fill: lightgray;
    /*stroke: lightgray;*/
    stroke-width: 0.5px;
    shape-rendering: crispEdges;
    font-family: sans-serif;
    font-size: 11px;
    margin: 3px;
    opacity: 0.5;
}
.x.label, .y.label{
    font-size: 12px;
    fill: white;
    stroke-width: 0.5px;
    opacity: 0.7;
    shape-rendering: crispEdges;
}

.tick line{
    stroke: lightgray;
    opacity: 0.1;
}

circle{
  opacity: 0.3;
}

// Hide the null values
circle[r="0"]{
    opacity: 0 !important;
}

circle.highlighted{
    stroke-width: 1 !important;
    opacity: 1 !important;
}

path.selection{
    stroke: black;
    stroke-width: 1;
    fill: gray;
    opacity: 0.4;
}