
.valuation-editor-main-area {
    width: 500px;
}

.valuation-editor-header {
    padding: 2px 0 1px 25px;
    font-size: 0.9rem;
    color: navy;
    font-weight: 600;
}

.valuation-editor-main-area>div:first-of-type {
    /* first div among siblings, ignores other element types */
    margin-top: 11px;
}

.valuation-editor-main-area>div:nth-of-type(3) {
    margin-bottom: 10px;
}

.valuation-editor-main-area fieldset {
    margin: 14px 8px 0 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color:dimgray;
}


.valuation-editor-grid {
    /* position: fixed; */
    /* margin: 0; */
    /* IMPORTANT: otherwise browser centers it */
    /* left: 40px;
    top: 80px; */
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 5px;
}


.valuation-editor-grid div {
    border-bottom: 1px solid gainsboro;
    padding: 5px 15px 3px 10px;
    /* font-size: 0.9rem; */
}

.valuation-editor-grid span {
    padding: 0 0 0 2px;
    align-self: end;
    /* bottom of the cell */
}


.valuation-editor-grid .highlight-in-yellow {
    background-color: yellow;
}

.valuation-editor-grid .highlight-in-pink {
    background-color: pink;
}