.total-section {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.total-row {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.submit-button {
    background: #BBA263;
    border-radius: 4px;
    border: 0;
    float: left;
    cursor: pointer;
    font: normal normal bold 18px/22px Proxima Nova Condensed;
    padding: 13px 31px 13px 32px;
    color: white;
    letter-spacing: 0px;
    opacity: 1;
}

.submit-button:hover {
    background: #847F7A 0% 0% no-repeat padding-box;
}

.submit-button:disabled {
    background: #d4c9a4;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 1;
}

.add-formula-button {
    background: #BBA263;
    border-radius: 4px;
    border: 0;
    float: left;
    cursor: pointer;
    font: normal normal bold 18px/22px Proxima Nova Condensed;
    padding: 13px 16px 13px 16px;
    color: white;
    letter-spacing: 0px;
    opacity: 1;
    margin-bottom: 22px;
}

.clear-discounts-button {
    background: #3982d6;
    border-radius: 4px;
    border: 0;
    float: left;
    cursor: pointer;
    font: normal normal bold 18px/22px Proxima Nova Condensed;
    padding: 13px 16px 13px 16px;
    margin-top: 22px;
    margin-bottom: 2px;
    color: white;
    letter-spacing: 0px;
    opacity: 1;
}

.clear-discount-button {
    margin-left: 4px;
    padding: 4px 8px 4px 8px;
    font-size: 12px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.clear-discount-button:disabled {
    cursor: default;
    background: #757575;
}