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

@layer components {
  .btn {
    @apply inline-flex items-center gap-2 rounded-lg border;
  }

  .btn-xs {
    @apply px-2 py-1;
  }

  .btn-info {
    @apply border-blue-600 text-blue-600 hover:bg-blue-600 hover:text-white;
  }

  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }

  .btn-link {
    @apply text-blue-500 hover:text-blue-600 hover:underline;
  }

  .calendar-badge {
    @apply border text-[10px] font-semibold me-2 px-2 py-0.5 mb-1 w-full rounded-lg inline-flex items-center justify-center;
  }
}
