body {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    margin: auto;
    padding: 10px;
}

#diagram {
    border-radius: 20px;
}

.highlight:hover {
    cursor: grab;
}

.highlight:hover * {
    stroke: #e6c938;
}

.highlight-dark:hover * {
    stroke: #434242;
}

.label {
    display: flex;
    align-items: center;
    justify-content: center;
    color:gray;
    font-family:Times;
    font-size:16px;
}

.soft-line {
    stroke: #c7c7c7;
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-dasharray: 10;
}

.plot-line {
    fill: none;
    stroke: #db3e3e;
    stroke-width: 3px;
    stroke-linecap: round;
}

.range-div {
	display: flex;
	padding: 10px;
	column-gap: 10px;
}

.range-label {
	flex-basis: 33%;
    text-align: right;
}

.range-value {
	flex-basis: 10%;
    text-align: center;
    background-color: #EEEEEE;
    border-radius: 5px;
    padding: 2px;
}