@tailwind base;
@tailwind components;
@tailwind utilities;

/* Your custom Tailwind styles using @apply */
.rsvp-button.interested {
  @apply bg-yellow-500 text-white cursor-not-allowed opacity-75;
}

.rsvp-button.approved {
  @apply bg-red-500 hover:bg-red-600 text-white;
}

.rsvp-button.declined {
  @apply bg-gray-500 text-white cursor-not-allowed opacity-75;
}
