.progress-container {
  position: fixed;
  top: 0px; /* Adjust this value based on your navbar height */
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1000;
  margin-top: 0px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  /* background: linear-gradient(to right, #4caf50, #2196f3); */
  background: linear-gradient(to right, #929292, #5f5f5f, #ffffff);
  transition: width 0.1s ease-out;
}
