.pagination_container {
  --grey-300: #edeeef;

  padding: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  background-color: #fff;

  @media screen and (max-width: 991px) {
    justify-content: center;
    font-size: 0.75rem;

    .go_to_page_container {
      display: none;
    }
  }
  @media screen and (max-width: 768px) {
    gap: 1rem;

    .records_range_container,
    .rows_per_page_container {
      display: none;
    }
  }

  .pagination_btn_container {
    display: flex;
    // gap: 0.3rem;

    .pagination_btn {
      position: relative;
      user-select: none;
      border: none;
      border-radius: 50%;
      height: 2rem;
      width: 2rem;
      padding: 4px;
      cursor: pointer;
      transition: 0.4s;
      background-color: transparent;

      @media screen and (max-width: 768px) {
        height: 1.5rem;
        width: 1.5rem;
        padding: 0rem;

        svg {
          width: 1.25rem;
          height: 1.25rem;
        }
      }

      &:disabled {
        cursor: unset;
        fill: rgba(0, 0, 0, 0.18);
      }
      &:not(:disabled) {
        cursor: pointer;
      }
      &:focus {
        outline: none;
      }
      &:hover:not(:disabled) {
        background-color: var(--grey-300);
        box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.6),
          0 1px 3px 1px rgba(60, 64, 67, 0.3);
      }
    }
  }
}

.rows_per_page_container select {
  border-radius: 4px;
  padding: 6px;
}
