.popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 1000; /* Adjust the z-index as needed */
}
::-webkit-scrollbar {
  width: 6px; /* Adjust width as needed */
  /* border-radius: 10px; */
  background-color: rgb(15, 23, 42);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(76, 84, 102);
  width: 10px; /* Adjust color as needed */
}

