.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;
}

.widget-button-google {
    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-google-button-bg);
    color: var(--color-text-inverse);
    border: 1px solid var(--color-google-button-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.widget-button-google:hover {
    background-color: var(--color-google-button-bg-hover);
    border-color: var(--color-google-button-border-hover);
}

.widget-button-google:active {
    background-color: var(--color-google-button-bg-active);
}
