
.navbar {

   background: rgb(255, 255, 255);
   font-size: 1.5rem;
   list-style: none;
   
}
#scrollUp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: none;
  background: rgba(255,88,0,255);
  color: #fff;
  padding: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: right 0.3s ease, bottom 0.3s ease;
}

.pagination-container {
  width: 100%; /* or you can set a fixed width like 600px */
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Optional: Add some margin if needed */
}

.pagination-container nav {
  display: inline-block;
}


@media (min-width: 768px) {
  #scrollUp {
      display: block;
  }
}

@media (max-width: 991px) {
    .navbar-collapse {
      text-align: center;
    }
    .navbar-nav {
      flex-direction: column;
      width: 100%;
    }
    .navbar-nav .nav-item {
      margin: 0.5rem 0;
    }
    .navbar-nav.ms-lg-3 {
      flex-direction: column;
      width: 100%;
      margin-top: 1rem;
    }
    .navbar-nav.ms-lg-3 .nav-item {
      margin: 0.5rem 0;
    }
  }

