/* ============================================================
   RankLoco — global radius restyle
   Pills (9999px) for buttons, inputs and small status elements;
   a large finite radius (20px) for cards, panels, sections and
   tables. Loaded last on every page; !important so it overrides
   inline styles and per-page CSS without editing each declaration.
   ============================================================ */

/* --- Pills: buttons, form fields, tags / pills / badges --- */
button,
[class*="btn"],
.nav-cta,
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
select,
textarea,
[class*="tag"],
[class*="pill"],
[class*="badge"]:not([class*="plan"]),
.chip {
  border-radius: 9999px !important;
}

/* --- Large finite radius: containers, cards, panels, tables --- */
.card, [class*="card"],
.panel, [class*="panel"],
.section, [class*="section"],
.modal, [class*="modal"],
.issue-card, .score-card, .backlink-item, .gbp-candidate,
.auth-card, .report-section,
table, [class*="table"] {
  border-radius: 20px !important;
}