.nav-pills {
  display: flex;
  padding-bottom: 10px;
  margin: 0;
  gap: 0; /* Space between items */
  width: calc(100% - 40px); /* Account for the space taken by arrows */
  overflow: hidden; /* Hide scrollbar */
}

.nav-item {
  flex-shrink: 0; /* Prevent items from shrinking */
}

.nav-link {
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  color: #64748b;
  background-color: none;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  background-color: none;
  color: #fff;
}

.nav-arrow {
  font-size: 20px; /* Increase font size for better visibility */
  cursor: pointer;
  border: none;
  background: none;
  color: #64748b; /* Change arrow color */
  padding: 0;
  margin: 0;
}

.scroll-buttons-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.scroll-buttons-container .nav-arrow {
  position: relative;
  z-index: 1;
  padding: 0 10px; /* Space around the arrows */
  font-weight: bold;
}

.left-arrow {
  margin-right: 10px; /* Add space between button and list */
}

.right-arrow {
  margin-left: 10px; /* Add space between button and list */
}

.nav-arrow:hover {
  color: #0056b3; /* Darken arrow color on hover */
}

/* No hover effect on nav-link */
.nav-link:hover {
  background-color: none; /* Keep original background */
  color: #64748b; /* Keep original color */
}
