.widget-button-standard {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--color-text-inverse);
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(158, 122, 255, 0.2);
}

.widget-button-standard:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 122, 255, 0.3);
    opacity: 0.95;
}

.widget-button-standard:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(158, 122, 255, 0.2);
}

.widget-button-delete {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 12px 24px;
    background-color: var(--color-error);
    color: var(--color-text-inverse);
    border: 1px solid var(--color-error-dark);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
}

.widget-button-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
    opacity: 0.95;
    background-color: var(--color-error-dark);
}

.widget-button-delete:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.2);
}

.widget-button-google {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 12px 24px;
    background-color: var(--color-google-button-bg);
    color: var(--color-google-button-text);
    border: 1px solid var(--color-google-button-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.widget-button-google:hover {
    background-color: var(--color-google-button-bg-hover);
    border-color: var(--color-google-button-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.widget-button-google:active {
    background-color: var(--color-google-button-bg-active);
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
