/* we need to send this floating because fen labels are floating */
.fen-forms {
    float: left;
}

.fen-input-box {
    font-size: 1em; 
    border-top: steelBlue 1px solid;
    border-left: steelBlue 1px solid;
    background: white;
    border-bottom: none;
    border-right: none;
    width: 1.5em;
    margin-left: 0em;
    margin-right: 0em;
    margin-top: 0em;
    margin-bottom: 0.3em;
    text-align: center;
}

/* fen labels are inline elements and we can't give those widths to match
  the boxes. But we can we we send them floating */
.fen-label {
    float: left;
    margin-left: 0em;
    margin-right: 0em;
    margin-top: 0.3em;
    margin-bottom: 0em;
    text-align: center;
    width: 1.5em;
    padding-left: 2px;
    border-left: steelBlue 1px solid;
    font-weight: bold;
    cursor: pointer;
}

.fen-label-highlighted {
    color: red;
}

.fen-table-lbl {
    float: left;
    margin-right: 1.5em;
    margin-top: 0.3em;
}

.fen-float-container {
    width: 40em;
}

.fen-rect {
    stroke: steelBlue;
    fill: white;
    margin: 10px;
    text-align: center;
}

.fen-rect-highlighted {
    stroke: red;
}

.fen-node > line {
    stroke: steelBlue;
    fill: none;
    stroke-width: 1.5px;
}

.fen-link {
    fill: none;
    stroke: steelblue;
    stroke-width: 1px;
}

.fen-node-lbl {
    pointer-events: none;
    text-anchor: middle;
    dominant-baseline: middle;
    font-size: 70%;
}
.fen-arrow {
    fill: none;
    stroke: red;
}
.fen-arrow-head {
    fill: red;
    stroke: red;
}

.fen-text {
    fill: #333;
    stroke: none;
    text-decoration: underline;
    font-size:84%;
}

.fen-text-highlight {
    fill: red;
}

.fen-dyn-lbl {
    font-weight: bold;
}
.fen-index-data {
    clear: left;
    padding-top: 10px;
}
.fen-index-data > p {
    opacity: 0;
    display: inline;
    margin-right: 10px;
}

.fen-sum-result {
    color: #333;
}

.fen-sum-result-num {
    color: #e83b3b;
    font-weight: bold;
}