.nav-links {
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
    margin-top: 50px;
  }
  .nav-links a, .nav-links span {
    padding: 0px 12px;
    height: 32px;
    text-align: center;
    margin: auto 0px;
    color: rgba(0, 0, 0, 0.87);
    display: flex;
    box-sizing: border-box;
    align-items: center;
    letter-spacing: 0.01071em;
    border-radius: 16px;
    line-height: 1.43;
    font-size: 13px;
    min-width: 32px;
    justify-content: center;
  }
  .nav-links a.dots:hover {
    background-color: transparent;
    cursor: default;
  }
  .nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.04);
    cursor: pointer;
  }
  .nav-links .current {
    background-color: rgba(0, 13, 59, 0.3);
  }
  .nav-links a .arrow::before {
    position: relative;
    /* top: 3pt; Uncomment this to lower the icons as requested in comments*/
    content: "";
    /* By using an em scale, the arrows will size with the font */
    display: inline-block;
    width: 0.4em;
    height: 0.4em;
    border-right: 0.12em solid rgba(0, 0, 0, 0.87);
    border-top: 0.12em solid rgba(0, 0, 0, 0.87);
  }
  .nav-links a .arrow.left {
    transform: rotate(-135deg) translate(-50%);
  }
  .nav-links a .arrow.right {
    transform: rotate(45deg);
  }
  .nav-links a.disabled {
    pointer-events: none;
  }
  .nav-links a.disabled .arrow::before {
    border-right: 0.12em solid rgba(0, 0, 0, 0.43);
    border-top: 0.12em solid rgba(0, 0, 0, 0.43);
  }
  .nav-links a.disabled:hover {
    background-color: transparent;
    cursor: default;
  }