/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Pagy series-nav pagination */
.pagy.series-nav {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.pagy.series-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #374151;
  background: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.1s, border-color 0.1s;
}
.pagy.series-nav a:hover:not([aria-disabled='true']):not([role='separator']) {
  background: #f3f4f6;
  border-color: #6b7280;
}
.pagy.series-nav a[aria-current='page'] {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff;
  font-weight: 600;
  cursor: default;
}
.pagy.series-nav a[role='separator'] {
  border-color: transparent;
  background: transparent;
  cursor: default;
  color: #9ca3af;
}
.pagy.series-nav a[role='link'][aria-disabled='true'] {
  color: #d1d5db;
  border-color: #e5e7eb;
  cursor: default;
  pointer-events: none;
}
