/* Container + states */
#action-form .fund-enhanced { position: relative; margin: 12px 0; }
#action-form .fund-enhanced.selected .fe-wrap{
  border-color:#ff6d00; box-shadow: 0 0 0 2px rgba(255,109,0,.15);
}
#action-form .fund-enhanced.collapsed .fe-panel{
  max-height:0; padding-block:0; border-width:0; overflow:hidden;
}

/* Label + input row */
#action-form .fe-label{ display:block; font-weight:700; margin-bottom:6px; }
#action-form .fe-wrap{
  display:flex; align-items:center; gap:8px;
  background:#fff; border:1px solid #d9d9d9; border-radius:10px; padding:8px 10px;
  transition:.2s border-color, .2s box-shadow;
}
#action-form .fe-input{ flex:1; border:0; outline:none; font-size:15px; background:transparent; }
#action-form .fe-clear{ border:0; background:#f4f4f4; border-radius:8px; padding:6px 8px; cursor:pointer; font-size:12px; }

/* Results panel */
#action-form .fe-panel{
  margin-top:6px; border:1px solid #eee; border-radius:12px; background:#fff;
  max-height:260px; overflow:auto; transition:max-height .25s ease, padding .2s ease, border-width .2s ease;
}
#action-form .fe-item{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px; cursor:pointer; border-bottom:1px solid #f5f2ee; font-size:14px;
}
#action-form .fe-item:last-child{ border-bottom:0; }
#action-form .fe-item[data-active="true"],
#action-form .fe-item:hover{ background:#fff6ef; }
#action-form .fe-empty{ padding:14px; color:#7a7a7a; font-size:14px; text-align:center; }

/* Skip button */
#action-form .fe-skip{
  display:block; width:100%; text-align:center; margin-top:10px; padding:10px;
  background:none; border:none; font-weight:700; color:#ff6d00; cursor:pointer;
}
#action-form .fe-skip:hover{ text-decoration:underline; }

/* Selection status pill */
#action-form .fe-status{
  margin:10px auto 0 auto;
  display:none;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#fff2e8;
  color:#7a3200;
  border:1px solid #ffd3b7;
  border-radius:999px;
  padding:6px 12px;
  font-weight:700;
  font-size:13px;
  width:fit-content;
}
#action-form .fund-enhanced.selected .fe-status{ display:flex; }
#action-form .fe-status .tick{
  width:16px; height:16px; border-radius:50%; display:inline-block;
  background:#ff6d00; position:relative;
}

/* Hide original select but keep in DOM */
#petition_signature_fund_name.enhanced-hidden{
  position:absolute !important; left:-9999rem !important; width:1px !important; height:1px !important;
}
