/*
 * 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 {
  display: flex;
  gap: 0.25rem; /* spacing-1 */
  font-weight: 600; /* font-semibold */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgb(107 114 128); /* gray-500 */
}

.pagy a:not(.gap) {
  display: block;
  border-radius: 0.5rem; /* radius-lg */
  padding: 0.25rem 0.75rem; /* spacing-1 spacing-3 */
  background-color: rgb(229 231 235); /* gray-200 */
}

.pagy a:not(.gap):hover {
  background-color: rgb(209 213 219); /* gray-300 */
}

.pagy a:not(.gap):not([href]) {
  color: rgb(209 213 219); /* gray-300 */
  background-color: rgb(243 244 246); /* gray-100 */
  cursor: default;
}

.pagy a:not(.gap).current {
  color: rgb(255 255 255); /* white */
  background-color: rgb(156 163 175); /* gray-400 */
}

.pagy label {
  display: inline-block;
  white-space: nowrap;
  background-color: rgb(229 231 235); /* gray-200 */
  border-radius: 0.5rem; /* radius-lg */
  padding: 0.125rem 0.75rem; /* spacing-0.5 spacing-3 */
}

.pagy label input {
  background-color: rgb(243 244 246); /* gray-100 */
  border: none;
  border-radius: 0.375rem; /* radius-md */
}