.f3-widget-paginator,
.pagination {
    display: flex;
    list-style: none;
    border-radius: 0.25rem;
}

.f3-widget-paginator li a,
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #222f47;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.f3-widget-paginator li a:hover,
.page-link:hover {
    color: #090d13;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.f3-widget-paginator li a:focus,
.page-link:focus {
      z-index: 2;
      outline: 0;
      box-shadow: #dee2e6;
}
  
.page-link:not(:disabled):not(.disabled) {
      cursor: pointer;
}
.f3-widget-paginator li:first-child a,
.page-item:first-child .page-link {
        margin-left: 0;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
}
.f3-widget-paginator li:last-child a,
.page-link:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.f3-widget-paginator li.current a,
.page-link:last-child.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #222f47;
    border-color: #222f47;
}
.f3-widget-paginator li:last-child.disabled a,
.page-link:last-child.disabled .page-link {
      color: #fff
      pointer-events: none;
      // Opinionated: remove the "hand" cursor set previously for .page-link
      cursor: auto;
      background-color: #dee2e6;
      border-color: #dee2e6;
}

  