.widget-button-standard {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.widget-button-standard:hover {
    opacity: 0.9;
}

.widget-button-delete {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 10px 20px;
    background-color: var(--color-error);
    color: var(--color-text-inverse);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.widget-button-delete:hover {
    opacity: 0.9;
}
