.elementor-6446 .elementor-element.elementor-element-4626aa2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-76d36d1 *//* Attendee list container */
.attendee-board {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 2.5rem;
  max-width: 800px;
  margin: 2rem auto;
  transition: all 0.3s ease;
}

/* Heading (optional, if you add one above list) */
.attendee-board h3 {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1.25rem;
}

/* Actual attendee list */
.attendee-list {
  margin: 0;
  padding-left: 0;
  columns: 1;
  column-gap: 3rem;
  list-style: none;
}

@media (min-width: 768px) {
  .attendee-list {
    columns: 2;
  }
}

/* Each attendee */
.attendee-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-weight: 500;
  color: #2d3748;
  border-bottom: 1px solid #edf2f7;
  break-inside: avoid;
  transition: background-color 0.2s ease;
}

.attendee-list li:last-child {
  border-bottom: none;
}

/* Decorative icon before each name */
.attendee-list li::before {
  content: "👤";
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 1rem;
  opacity: 0.7;
}

/* Hover effect */
.attendee-list li:hover {
  background-color: #f9fafb;
  border-radius: 8px;
}

/* Message when locked or empty */
.attendee-empty,
.attendee-locked {
  text-align: center;
  color: #718096;
  font-style: italic;
  padding: 1rem;
}/* End custom CSS */