.pagy.series-nav {
  display: flex;
  align-items: flex-start;
  border-radius: 5px;
  border: 1px solid var(--slate-300, #CBD5E1);
  background: var(--white, #FFF);
  /* Button */
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.pagy.series-nav .gap {
  padding: 6px 15px;
}

.pagy.series-nav a {
  text-decoration: none;
  display: flex;
  height: 36px;
  padding: 10px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--slate-900, #0F172A);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  border-right: 1px solid var(--slate-300, #CBD5E1);

  &:first-of-type {
    width: 36px;
    border-radius: 5px 0px 0px 5px;
  }

  &:last-of-type {
    width: 36px;
    border-right: 0;
    border-radius: 0px 5px 5px 0px;
  }

  &:hover {
    background-color: var(--slate-100, #F1F5F9);
  }
  &:not([href]) { /* disabled links */
    cursor: default;
    background-color: transparent;
  }
  &.current,
  &[aria-current="page"] {
    cursor: default;
    background: var(--sky-action-600, #0284C7);
    color: var(--white, #FFF);
  }
}
