/* Kaminari Pagination Styles */
.pagination {
  @apply inline-flex items-center space-x-2;
}

.pagination a,
.pagination span {
  @apply inline-flex items-center px-3 py-2 text-sm font-medium border border-gray-300 bg-white text-gray-700 hover:bg-gray-50 hover:text-gray-900;
}

.pagination a:first-child,
.pagination span:first-child {
  @apply rounded-l-md;
}

.pagination a:last-child,
.pagination span:last-child {
  @apply rounded-r-md;
}

.pagination .current {
  @apply bg-blue-600 text-white border-blue-600 hover:bg-blue-700 hover:text-white;
}

.pagination .gap {
  @apply px-3 py-2 text-sm font-medium text-gray-700 bg-white border-0;
}

.pagination .prev,
.pagination .next {
  @apply font-medium;
}

.pagination .disabled {
  @apply text-gray-400 bg-gray-100 cursor-not-allowed hover:bg-gray-100 hover:text-gray-400;
}