/*
 * RR Custom — IDX ADDONS widget overrides (migrated 2026-07-09)
 *
 * Source: an Elementor HTML widget on the Sell page (post 19), where these rules sat in
 * a <style> tag next to the IDX Addons "plunk valuation" <script src>. The script embed
 * stays in Elementor (it is the widget); only the CSS moved here.
 *
 * Scope is safe to make global: `.pv-*` / `#plunk-valuation-wrapper` only exist where the
 * plunk-valuation widget renders, which is the Sell page alone (verified across all 20
 * published URLs).
 *
 * CASCADE NOTE — why this can live in a stylesheet at all. IDX Addons injects its own ~68
 * rules as an inline <style> in the BODY, i.e. after every <head> stylesheet, and it
 * declares the same three selectors. These overrides used to sit immediately after that
 * inline block and won purely on source order. In a <head> file they no longer do, so each
 * rule was checked to make sure it wins on its own merits:
 *
 *   .pv-heading-container   IDX's rule never sets `display`  -> no contest.
 *   div#plunk-valuation-wrapper  (0,1,0,1) beats IDX's `#plunk-valuation-wrapper` (0,1,0,0)
 *                           -> the `div` prefix is load-bearing; do not "tidy" it away.
 *   .pv-button              color / width / font-size are `!important` -> importance beats
 *                           order. `border-radius` is NOT, and already loses to the kit's
 *                           `.elementor-kit-10 button` (0,1,1) -- it was inert before this
 *                           migration too, so it is kept verbatim rather than "fixed".
 *
 * Enqueued LAST (after rr-custom.css) to stay as close as possible to its original
 * end-of-cascade position. Verified: computed styles on Sell identical before/after.
 */

.pv-heading-container {
  display: none;
}

div#plunk-valuation-wrapper {
  padding: 0;
  margin-top: 20px;
  background-color: transparent;
}

.pv-button {
  color: #ffffff !important;
  width: auto !important;
  border-radius: 0px 25px 25px 0px;
  font-size: 13px !important;
}
