.buttonCommonPrimary {
    background-color: var(--primaryButton);
    border: 0;
    border-radius: 5px;
    margin: 0.25rem;
    font-weight: bold;
    color: var(--white);
}

.buttonCommonPrimary:hover {
    background-color: var(--primaryButtonHover);
}

.buttonCommonPrimary:disabled {
    background-color: var(--primaryButtonDisabled);
}


.buttonAppendPrimary {
    font-weight: bold !important;
    color: var(--white) !important;
    background-color: var(--primaryButton) !important;
}

.buttonAppendPrimary:hover {
    background-color: var(--primaryButtonHover) !important;
}

.buttonAppendPrimary:disabled {
    background-color: var(--primaryButtonDisabled) !important;
}