.calc-edit-row{
    display: flex;
    column-gap: 20px;
}
.calc-edit-col {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.calc-edit-select{
    min-height: 150px;
    height: 100%;

    outline: none;
    padding: 3px 10px;
    border: 1px solid #dedede;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    margin-top: 10px;
}

.calc-edit-field-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    row-gap: 3px;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
}

.calc-edit-field-group label, .calc-edit-col label{
    font-weight: 600;
    margin-right: 10px;
    min-width: 200px;
    text-align: left;
}

.calc-edit-form{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#ingredients option:first-child {
    font-weight: bold;
}

#del:disabled{
    background-color: #acabab !important;
}
.email-edit-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

#sub-cat-box {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.calc-edit-field-row {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.calc-add-button{
    background-color: #30681e;
}

.calc-add-button:hover{
    background-color: #1f5a0b;
}

.calc-delete-button{
    background-color: #934040;
}

.calc-delete-button:hover{
    background-color: #801f1f;
}