.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill-btn {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  border: 1px solid transparent;
  white-space: nowrap;
}
.pill-btn i {
  font-size: 16px;
}
.pill-btn:hover {
  background-color: #f1f5f9;
}
.nav-link.active {
  background-color: #2563eb;
  color: #ffffff;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
}
.btn-primary:hover {
  background-color: #1d4ed8;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  color: #475569;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}
.btn-outline:hover {
  background-color: #f8fafc;
}
.icon-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.icon-btn:hover {
  background-color: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
}
.stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.row-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 15px;
  flex-shrink: 0;
}
.kanban-col {
  min-width: 240px;
}
.kanban-card {
  cursor: grab;
}
.kanban-card.dragging {
  opacity: 0.4;
}

/* Substitutos das classes de valor arbitrário do Tailwind (ex: min-w-[200px]),
   que não são reconhecidas pelo build estático usado neste projeto. */
.max-h-modal-sm { max-height: 65vh; }
.max-h-modal-lg { max-height: 90vh; }
.min-h-100 { min-height: 100px; }
.min-h-220 { min-height: 220px; }
.min-w-200 { min-width: 200px; }
.min-w-220 { min-width: 220px; }
