.event-options {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.guest-row .event-options .event-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0;
  padding: 0.5rem 0.4rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.15s ease;
}

.guest-row .event-options .event-option:hover {
  background: var(--color-bg);
}

.event-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.event-option-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 5px;
  background: #fff;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.event-option-box::after {
  content: '';
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}

.event-option:has(input:checked) .event-option-box {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.event-option:has(input:checked) .event-option-box::after {
  opacity: 1;
}

.event-option:has(input:focus-visible) .event-option-box {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.event-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.event-option-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.event-option-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.event-option-location {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
}
