.vlf-recipe-calculator-group {
    width: 99%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    margin-top: 0.5em;
    margin-bottom: 0.5em;

    font-family: Verdana;
    font-size: 14px;
    line-height: 1.2em;
    font-variant: normal;
}

.vlf-recipe-calculator-box {
    width: 98%;
    border: 1px solid black;
    border-radius: 4px;
    margin: 1%;
}

.vlf-recipe-calculator-title {
	font-family: Verdana;
    font-size: 100%;
    padding: 0.4em 0.2em 0.4em 0.2em;
    color: black;
	margin: auto;
	text-align: center;
}

.vlf-recipe-calculator-group input {
    -webkit-appearance: none;
    font-family: Verdana;
    font-size: 14px;
    width: 100%;
    font-size: 100%;
    border: 1px solid #fdcb6e;
    border-radius: 4px;
    padding: 0.4em 0.2em 0.4em 0.2em;
    box-sizing: border-box;
    background-color: #ffeaa7;
    color: black;
}

.vlf-recipe-calculator-group input:disabled {
    color: black;
    background-color: #dfe6e9;
}

.vlf-recipe-calculator-group select {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;

    font-family: Verdana;
    font-size: 14px;
    width: 100%;
    font-size: 100%;
    border: 1px solid #fdcb6e;
    border-radius: 4px;
    padding: 0.4em 0.2em 0.4em 0.2em;
    box-sizing: border-box;
    background-color: #ffeaa7
}

.vlf-recipe-calculator-group button {
    -webkit-appearance: none;
    width: 100%;
    font-size: 100%;
    font-family: Verdana;
    font-size: 14px;
    
    border: none;
    border-radius: 30px;
    padding: 0.5em;
    color: white;
    background-color: #2d3436;
    -webkit-transition-duration: 0.2s; /* Safari */
      transition-duration: 0.2s;
}

.vlf-recipe-calculator-group button:hover {
    background-color: #da6d52;
}

.vlf-recipe-calculator-entry {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.vlf-recipe-calculator-entry-element {
    align-self: flex-end;

    height: 100%;
    display: flex;
    flex-direction: column;

    padding: 0.5em;
}

.vlf-recipe-calculator-entry-cell-0 {
    width: 80px;
    margin: 0;
    padding: 0;
}

.vlf-recipe-calculator-entry-cell-1 {
    width: 120px;
    margin: 0;
    padding: 0;
}

.vlf-recipe-calculator-entry-cell-2 {
    width: 126;
    margin: 0;
    padding: 0;
}

.vlf-recipe-calculator-entry-cell-3 {
    width: 180px;
    margin: 0;
    padding: 0;
}

.vlf-recipe-calculator-entry-element-ingr {
    align-self: center;

    width: 12em;
    height: 100%;
    display: flex;
    flex-direction: column;

    padding: 0.5em;
}

.vlf-recipe-calculator-entry-element-cell {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 100%;
    
    padding: 0.1em;
}