/* Complex Numbers page specific styles */

#complex-plane-chart,
#polar-coordinates-chart {
    margin: 20px 0;
    text-align: center;
}

#complex-plane-chart svg,
#polar-coordinates-chart svg {
    background-color: #fafafa;
}

svg text {
    font-family: sans-serif;
}

svg text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
svg text::selection {
    background: none;
}

circle.draggable {
    fill: lightsteelblue;
    stroke: steelblue;
    stroke-width: 1.5px;
    opacity: 0.5;
    fill-opacity: 0.2;
    cursor: pointer;
}

circle.draggable:hover{
    opacity: 0.85;
    fill-opacity: 0.5;
}

circle.draggable.dragging {
    fill: red;
    stroke: brown;
    opacity: 0.85;
    fill-opacity: 0.5;
}
