/* Load Tailwind CSS v4 */
/*@import "tailwindcss";*/

/* ================================
   Site-specific styles
   ================================ */

/* Navigation */
.nav-link {
  @apply px-4 py-2 rounded-md transition;
}

.nav-link:hover {
  @apply bg-gray-100;
}

.nav-link.active {
  @apply font-semibold border-b-2 border-blue-600;
}

/* Buttons */
.btn-primary {
  @apply inline-flex items-center justify-center
         px-4 py-2 rounded-lg
         bg-blue-600 text-white font-medium;
}

.btn-primary:hover {
  @apply bg-blue-700;
}

/* Accessibility */
:focus-visible {
  @apply outline outline-offset-2 outline-blue-500;
}
