.widget-button-standard {
    font-family: var(--font-family-primary);
    font-size: 1.125em;
    line-height: var(--line-height-base);
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    font-weight: 400;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.widget-button-standard:hover {
    background-color: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-subtle);
}

.widget-button-standard:active {
    transform: translateY(0);
    box-shadow: none;
}

.widget-button-delete {
    font-family: var(--font-family-primary);
    font-size: 1.125em;
    line-height: var(--line-height-base);
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    background-color: var(--color-error);
    color: var(--color-text-inverse);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    font-weight: 400;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.widget-button-delete:hover {
    background-color: #ff453a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-subtle);
}

.widget-button-delete:active {
    transform: translateY(0);
    box-shadow: none;
}
