* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------------------------------- salCalIndex ---------------------------------- */
.inpDiv {
    display: flex;

    margin: 10%;
    margin-top: 20vh;
    align-items: center;
    flex-direction: column;
}

.inpDiv .form {
    padding: 5%;
    border-radius: 30px;
    border-style: solid;
    border-color: yellow;
    background-color: #c9c9c9;

    display: flex;
    align-items: center;
    flex-direction: column;
}

#gross {
    max-width: 85px;
}

#inflation {
    max-width: 55px;
}

.tax-field {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: stretch;
}

.tax-field .vertical-div {
    display: flex; 
    justify-content: center;
    flex-direction: column;
    padding: 5px;
}

.tax-field .vertical-div div {
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 2px;
}

#tax {
    max-width: 70px;
}

.roleField input, .roleField label {
    margin: 3px;
}

.deductions-detractions {
    max-width: 80px;
    margin-right: 7px;
}

/* ---------------------------------- salCalResult ---------------------------------- */
.result-container {
    display: flex;

    margin: 20vh 0 20vh 0;
    align-items: center;
    flex-direction: column;
}

.result-rect {
    padding: 2%;
    border-radius: 30px;
    border-style: solid;
    border-color: yellow;
    background-color: #c9c9c9;

    display: flex;
    align-items: center;
    flex-direction: column;
}

table, th, td {
    border: 1px solid;
    width: fit-content;
}

th, td {
    padding: 7px;
}