/*
 * 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 Bootstrap pagination → dark theme */
.pagination {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  color: #8899AA;
  text-decoration: none;
  border: 1px solid #243B66;
  background: #132140;
  transition: all 0.15s;
}
.page-item .page-link:hover {
  background: #1A2D52;
  color: #F5F0E8;
}
.page-item.active .page-link {
  background: #C9A84C;
  color: #0B1628;
  border-color: #C9A84C;
}
.page-item.disabled .page-link {
  color: #334455;
  pointer-events: none;
  border-color: #1A2D52;
  background: #0B1628;
}
