/*
 * Application styles. Tailwind utilities live in builds/tailwind.css
 */

.pagy {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pagy a, .pagy span {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  background: #fff;
  color: #334155;
}

.pagy a:hover {
  background: #f8fafc;
}

.pagy .current {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* Kanban: scrollbar orizzontale sempre visibile e usabile */
.kanban-board {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 #e2e8f0;
}

.kanban-board::-webkit-scrollbar {
  height: 12px;
}

.kanban-board::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 999px;
}

.kanban-board::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 999px;
}

.kanban-board::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}
