
/* Reduce table width and tighten spacing */
.events-table {
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 28rem;        /* reduce overall table width */
  width: 100%;
  font-size: 0.9rem;       /* slightly smaller text */
}

/* Tighten cell padding */
.events-table th,
.events-table td {
  padding: 0.5rem 0.75rem; /* was 6px-ish; now tighter */
}

/* Optional: soften borders for a cleaner look */
.events-table th,
.events-table td {
  border: 0.0625rem solid #666; /* thin, rem-based border */
}

.events-table-wrapper {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.event-choices {
    table-layout: auto;
    width: auto;
    font-size: .92rem;
}

.event-choices td,
.event-choices th {
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    padding: 0.5rem 2rem;    /* optional: makes the table feel more compact */
}
