.pagy {
  display: flex;
  gap: 0.25rem; /* space-x-1 */
  font-weight: 600; /* font-semibold */
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-gray-500 */
}

.pagy a:not(.gap) {
  display: block;
  border-radius: 0.5rem; /* rounded-lg */
  padding: 0.25rem 0.75rem; /* py-1 px-3 */
  background-color: #e5e7eb; /* bg-gray-200 */
  text-decoration: none;
  color: inherit;
}

.pagy a:not(.gap):hover {
  background-color: #d1d5db; /* bg-gray-300 */
}

.pagy a:not(.gap):not([href]) {
  color: #d1d5db; /* text-gray-300 */
  background-color: #f3f4f6; /* bg-gray-100 */
  cursor: default;
}

.pagy a.current {
  color: #ffffff; /* text-white */
  background-color: #9ca3af; /* bg-gray-400 */
}

.pagy label {
  display: inline-block;
  white-space: nowrap;
  background-color: #e5e7eb; /* bg-gray-200 */
  border-radius: 0.5rem; /* rounded-lg */
  padding: 0.125rem 0.75rem; /* py-0.5 px-3 */
}

.pagy label input {
  background-color: #f3f4f6; /* bg-gray-100 */
  border: none;
  border-radius: 0.375rem; /* rounded-md */
}