/*
 * 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 */
nav.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.pagination a,
nav.pagination span,
nav.pagination em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
  text-decoration: none;
}

nav.pagination a {
  color: #a3a3a3;
  background: #262626;
  border: 1px solid #404040;
}

nav.pagination a:hover {
  color: #fff;
  background: #404040;
  border-color: #525252;
}

nav.pagination em.current {
  color: #fff;
  background: #f97316;
  border: 1px solid #f97316;
  font-style: normal;
}

nav.pagination span.gap {
  color: #525252;
  border: none;
  background: none;
  min-width: 24px;
}

nav.pagination span.prev,
nav.pagination span.next,
nav.pagination span.first,
nav.pagination span.last {
  color: #525252;
  background: #1a1a1a;
  border: 1px solid #262626;
}
