

/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* STRANKOVANI                                                    															  */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/


/* Strankovani ———————————————————————————————————————————————————————————————————————————————————*/
.pagination {
  border-top: 1px solid #e5e7eb;
  justify-content: center;
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 0.5rem;
}

.pagination-item {
  border: 1px solid #e5e7eb;
	background-color: white;
  justify-content: center;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  align-items: center;
  color: #6b7280;
  height: 2.5rem;
  display: flex;
  width: 2.5rem;
}

.pagination-item:hover, .pagination-item.active {
  border-color: #2bbfbd;
  background: #2bbfbd;
  color: white;
}

