/* Pagination component styles for insight report results listing. */

.pagination {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
  overflow-x: auto;
}

.pagination .page-item {
  display: inline-flex;
  min-width: 0 !important;
}

.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color: #ececec;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.pagination .page-link:hover {
  background-color: #e0e0e0;
}

.pagination .page-link:focus-visible {
  outline: 2px solid #a65f00;
  outline-offset: 2px;
}

.pagination .page-item.active .page-link {
  background-color: #cc7a00;
  border-color: #cc7a00;
  color: #ffffff;
}

.pagination .page-item.disabled .page-link {
  background-color: #f4f4f4;
  color: #a7a7a7;
  pointer-events: none;
  cursor: not-allowed;
}

.pagination .pagination-button {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #1C1C1C;
}

.pagination .pagination-button {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #1C1C1C;
  padding: 0 !important;
}

.pagination-horizontal-line{
  display: block;
  width: 2px;
  height: 16px;
  background-color: rgba(156, 156, 156, 1);
  margin: 3px 0 2px 15px;
}
