
/* Target only buttons we marked */
.wpforms-add-fields-button.uawpf-has-badge {
  position: relative;
  padding-right: 40px;
}

/* Badge style using data-badge attribute */
.wpforms-add-fields-button.uawpf-has-badge::after {
  content: attr(data-badge);
  position: absolute;
  right: 5px;
  top: 5;
  transform: translateY(-50%);
  background: #DEEDED;
  color: #007A77;
  font-size: 8px;
  line-height: 1;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-family: "Figtree", Inter;
}

/* optional small variant for very short labels */
.wpforms-add-fields-button.uawpf-has-badge[data-badge="UAWPF"]::after {
  padding: 2px 4px;
  font-size: 8px;
}

/* Badge for UAWPF fields */
.wpforms-panel-sidebar-section[data-section="uawpf-mailchimp"]::after, 
.wpforms-panel-sidebar-section[data-section="uawpf-google-sheets"]::after {
    content: "UAWPF";
    display: inline-block;
    background-color: #ff5a5f; /* Badge background */
    color: #007A77; /* Text color */
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 4px;
    background: #DEEDED;
    font-family: "Figtree", Inter;
    line-height: 148%; /* 16.5px */
    position: absolute;
    right: 40px;
}

