/* Utility button classes using Tailwind @apply via CDN can't be used in CSS file. Use plain CSS. */
.btn-primary { @apply btn; }

/* Fallback pure CSS (when Tailwind @apply isn't processed), we provide base styles */
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-brand,
.chip,
.input,
.card {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.btn-primary,
.btn-brand {
  background-color: #42a5e3; /* brand-600 */
  color: white;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #111827;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-danger {
  background-color: #ef4444;
  color: white;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: #eef7fd;
  color: #0f5a8f;
  padding: 0.375rem 0.625rem;
  border-radius: 9999px;
  font-weight: 600;
}

.chip button {
  background: transparent;
  color: #0c4770;
}

.input {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
}


