.new-round-wizard-overlay {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100vh - 220px);
    border: 1px gray solid;
    box-shadow: 5px 10px 18px 10px #888888;
    padding: 5px;
    background-color: white;
    z-index: 30;
    opacity: 1;

    box-sizing: border-box;
}

.new-round-wizard-overlay label,
.new-round-wizard-overlay input {
    font-size: 0.8rem;
    color: black;
}

.new-round-wizard-overlay td {
    color: black;
}

.new-round-wizard-title {
    margin: 3px 0 2px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    user-select: none;
}



.new-round-wizard-close-button {
    float: right;
    margin-right: 10px;
    margin-top: -3px;
    padding: 0 8px;
    color: crimson;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px gray solid;
    cursor: pointer;
    user-select: none;
}

.new-round-wizard-warning {
    float: right;
    margin-right: 100px;
    margin-bottom: 2px;
    padding: 0px 8px 3px 8px;
    border: solid 1px lightgray;
    /* grid-column: 0 / span 3; */
}

.new-round-wizard-grid {
    display: grid;
    grid-template-columns: 4fr 3fr;
    grid-template-rows: auto;
    gap: 0.2rem;
    grid-template-areas:
        "scenario calculate1"
        "currentCapTable newCapTable"
        "newRound newAmounts"
        "newRound note"
        "newFundInvestment butAdd"
    ;

    /* border: 1px solid pink; */
}

.new-round-wizard-section {
    border: 1px solid silver;
    border-radius: 5px;
    padding: 4px 6px;
    margin: 5px;
}

.new-round-wizard-section-row {
    margin: 5px 0 0 13px;


}

.new-round-wizard-lbl {
    margin-left: 3px;
    margin-top: 3px;
    font-size: 0.8rem;
}

.new-round-wizard-lbl-2 {
    margin-left: 3px;
    font-size: 0.8rem;
    color: gray;
}

.new-round-wizard-textbox {
    border: 1px solid silver;
    padding: 1px 5px 1px 4px;
    margin: 0 0 0 4px;
    font-size: 0.8rem;
    display: inline;
    background-color: white;
    color: navy;
    display: inline-block;
    min-width: 200px;
    min-height: 21px;
}

.new-round-wizard-required::after {
    content: '*';
    color: red;
    font-size: 1.2rem;
    ;

}

.new-round-wizard-converts-to {
    min-width: 300px;
}

.new-round-wizard-button {
    width: 160px;
    height: 30px;
    align-self: center;
    justify-self: center;
    background-color: honeydew;
    border: 1px solid silver;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;

}

.new-round-wizard-input-number {
    width: 100px;
    text-align: right;
}

.new-round-wizard-input-number-narrow {
    width: 45px;
    text-align: right;
}



.new-round-wizard-table {
    all: revert;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin: 10px 0 0px 12px;
    user-select: none;

}

.new-round-wizard-table td {
    background-color: white;
}

.new-round-wizard-table-cell-left {
    text-align: left;
    padding: 0 20px 0 5px;
    min-width: 110px;
}

.new-round-wizard-table-cell-right {
    text-align: right;
    padding: 0 8px 0 5px;
    min-width: 110px;
}

.new-round-wizard-table-cell-number {
    text-align: right;
    padding: 0 8px 0 5px;
}

.new-round-wizard-new-amounts-grid {
    margin: 10px 0 0 0;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 3fr 3fr 3fr;
    grid-template-rows: auto;
    gap: 0.2rem;
}

.new-round-wizard-note {
    font-family: Arial, Helvetica, sans-serif;
}

.new-round-wizard-finish-section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.new-round-wizard-results {
    color: mediumblue;
    font-weight: 600;
    text-align: center;
}