
body .custom-button-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: var(--wp--preset--font-family--poppins, "Poppins", sans-serif);
    font-size: var(--wp--preset--font-size--body-m, 16px);
    font-weight: 600;
    line-height: 1.5;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    outline: none;
    border: 1px solid var(--wp--preset--color--neutral-30, #D8C6B8);
    background-color: var(--wp--preset--color--neutral-00, #FFFFFF);
    color: var(--wp--preset--color--neutral-140, #2B1F1A);
    padding: 9px 24px;
    cursor: pointer;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    pointer-events: auto;
}

body .custom-button-outline:hover,
body .custom-button-outline:focus,
body .twt-success-close:hover {
    background-color: var(--wp--preset--color--neutral-10, #F5EFEA);
    border-color: var(--wp--preset--color--neutral-30, #D8C6B8);
    color: var(--wp--preset--color--neutral-140, #2B1F1A);
}