
<style type="text/css">
 
/* Removes Amount Column on Event Registration Summary Page */
.neoncrm-event-registration-list-summary tr th:nth-child(3),tr td:nth-child(3){
      display:none;
   }
 
</style>

/* === Replace "Attendee N" with "Participant N" for any count === */

/* Hide Neon’s built-in label inside the legend to avoid duplicates */
#attendeeTable .neoncrm-attendee legend span {
  display: none !important;
}

/* Auto-number all attendee blocks */
#attendeeTable {
  counter-reset: attendee;
}

/* Keep the legend but suppress any remaining original text sizing */
#attendeeTable .neoncrm-attendee legend {
  font-size: 0; /* prevents stray text from showing without collapsing the element */
  margin-bottom: 4px; /* small space below label */
}

/* Inject our replacement label with numbering (bold) */
#attendeeTable .neoncrm-attendee legend::before {
  counter-increment: attendee;
  content: "Participant " counter(attendee);
  display: inline-block;
  font-size: 24px;
  font-weight: bold; /* make label bold */
  padding: 0 3px;
  visibility: visible;
}

/* === Remove spacer headers after each legend === */

/* Hide the first spacer after the legend */
#attendeeTable .neoncrm-attendee legend + .neoncrm-section-header {
  display: none !important;
}

/* Hide a second consecutive spacer if present (covers your markup) */
#attendeeTable .neoncrm-attendee legend + .neoncrm-section-header + .neoncrm-section-header {
  display: none !important;
}

/* Remove any extra margin from the first field after the legend */
#attendeeTable .neoncrm-attendee legend + *:not(.neoncrm-section-header) {
  margin-top: 0 !important;
}

/* === Change "+Add Attendee" button text === */
#addAttendeeBtn a {
  font-size: 0; /* hide original text */
}

#addAttendeeBtn a::before {
  content: "+Add Participant";
  font-size: 14px; /* match original sizing */
}
/* Padding space for ticket options on event pages */.neoncrm-ticket-options-table td {
padding-bottom: 20px;
}
/* Helps widen alt web templates */@media (min-width: 992px) {
.col-md-6 {
    width: auto !important;
}
#form-wrapper {
 width: 720px;
 margin: 0px auto 0px auto;
}
.col-md-offset-3 {
 margin-left: 12%;
 margin-right: auto;
}
.container {
    width: 970px;
}