/* =========================
   Recipe scaler output
========================= */

.recipe-output {
    margin-top: 12px;
}

.recipe-output:empty {
    display: none;
}

.recipe-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(15, 118, 110, 0.05);
    border: 1px solid rgba(15, 118, 110, 0.12);
    margin-bottom: 8px;
    font-size: 14px;
}

.recipe-line__amount {
    font-weight: 900;
    color: #0f4a44;
    white-space: nowrap;
}

.recipe-line__rest {
    color: #374151;
}

.recipe-line--unparsed {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.25);
}