/*
 * 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.
 */

/* Kaminari Pagination Styling */
.kaminari-styled nav.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.kaminari-styled nav.pagination .page,
.kaminari-styled nav.pagination .prev,
.kaminari-styled nav.pagination .next,
.kaminari-styled nav.pagination .first,
.kaminari-styled nav.pagination .last {
  display: inline-flex;
}
.kaminari-styled nav.pagination a,
.kaminari-styled nav.pagination span.current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #1a2744;
}
.kaminari-styled nav.pagination a:hover {
  background: #C9A84C;
  color: #fff;
  border-color: #C9A84C;
}
.kaminari-styled nav.pagination span.current {
  background: #C9A84C;
  color: #fff;
  border-color: #C9A84C;
  cursor: default;
}
.kaminari-styled nav.pagination .gap {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  color: #9ca3af;
  font-size: 0.875rem;
}
