/* Primary Button */
.is-style-fill a.wp-element-button:not([href]),
.is-style-fill a.wp-element-button[href=""] {
    background-color: var(--wp--preset--color--custom-action-disabled);
    pointer-events: none;
    cursor: not-allowed;
}

/* Secondary Button */
.is-style-outline a.wp-element-button:not([href]),
.is-style-outline a.wp-element-button[href=""] {
    background-color: var(--wp--preset--color--custom-bg-white);
	color: var(--wp--preset--color--custom-action-disabled);
    border: 1px solid var(--wp--preset--color--custom-action-disabled);
    pointer-events: none;
    cursor: not-allowed;
}

/* Tertiary Button */
.is-style-button-tertiary a.wp-element-button:not([href]),
.is-style-button-tertiary a.wp-element-button[href=""] {
    background-color: var(--wp--preset--color--custom-bg-primary);
	color: var(--wp--preset--color--custom-action-disabled);
    pointer-events: none;
    cursor: not-allowed;
}

/* Ghost Button */
.is-style-button-ghost a.wp-element-button:not([href]),
.is-style-button-ghost a.wp-element-button[href=""] {
    background-color: var(--wp--preset--color--custom-bg-primary);
	color: var(--wp--preset--color--custom-action-disabled);
    pointer-events: none;
    cursor: not-allowed;
}

/* Link Button */
.is-style-button-link a.wp-element-button:not([href]),
.is-style-button-link a.wp-element-button[href=""] {
	color: var(--wp--preset--color--custom-action-disabled);
    pointer-events: none;
    cursor: not-allowed;
}
