/* Target both the Tab Titles and the Modal Buttons */
.xb-tab-switcher__tab,
.xb-wishlist-modal-save-for-later__button--cancel,
.xb-wishlist-modal-save-for-later__button--save {
    /* Inherit Typography from Theme */
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    
    /* Inherit Colors */
    color: inherit !important;
}

/* Ensure the active tab follows theme logic */
.xb-tab-switcher__tab.active {
    font-weight: bold; 
    border-bottom-color: currentColor; 
}

/* Specific styling for the Save button to ensure it stands out */
.xb-wishlist-modal-save-for-later__button--save {
    background-color: var(--color-button, #000) !important;
    color: var(--color-button-text, #fff) !important;
    border-radius: var(--buttons-radius, 0px) !important;
}

/* Specific styling for the Cancel/No Thanks button */
.xb-wishlist-modal-save-for-later__button--cancel {
    background: none !important;
    text-decoration: underline;
    border: none !important;
}