/* Background color of closed accordion tabs */
.edgtf-accordion-holder .edgtf-title-holder {
  background-color: #FBDF35 !important;
  transition: background-color 0.3s ease;
}

/* Optional: Slightly deeper gold tone when hovering */
.edgtf-accordion-holder .edgtf-title-holder:hover {
  background-color: #f0d42b !important;
}

/* Keeps the tab white (or whatever active color you prefer) when opened */
.edgtf-accordion-holder .edgtf-title-holder.ui-state-active {
  background-color: #ffffff !important;
}