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

/* Pagy Pagination Styling */

.pagy.series-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
}

.pagy.series-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
  border: 1px solid #e2e8f0; /* slate-200 */
  background-color: white;
  color: #475569; /* slate-600 */
  text-decoration: none;
}

/* Dark mode support */
:root.dark .pagy.series-nav a {
  background-color: #1e293b; /* slate-800 */
  border-color: #334155; /* slate-700 */
  color: #94a3b8; /* slate-400 */
}

.pagy.series-nav a:hover {
  background-color: #f8fafc; /* slate-50 */
}

:root.dark .pagy.series-nav a:hover {
  background-color: #334155; /* slate-700 */
}

.pagy.series-nav a[aria-current="page"] {
  background-color: #eef2ff; /* indigo-50 */
  color: #4f46e5; /* indigo-600 */
  border-color: #c7d2fe; /* indigo-200 */
  font-weight: 700;
}

:root.dark .pagy.series-nav a[aria-current="page"] {
  background-color: rgba(49, 46, 129, 0.3); /* indigo-900/30 */
  color: #818cf8; /* indigo-400 */
  border-color: #3730a3; /* indigo-800 */
}

.pagy.series-nav a[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagy.series-nav a[role="separator"] {
  border: none;
  background: transparent;
  cursor: default;
  padding: 0.5rem 0.5rem;
}
