.container {
  position: relative;
  width: 100%;
  text-align: left;
  margin-top: 50px;
}

.popup {
  display: none;
  position: fixed;
  top: 100%;
  left: 50%;
  width: 100%;
  height: 150%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #ff0000;
  border: 1px solid rgb(255, 0, 0);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  overflow: auto; /* This allows the popup to be scrollable */
}

.popup p {
  margin-bottom: 20px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

button {
  padding: 5px 5px;
  background-color: #0066ff;
  color: rgb(52, 160, 196);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.scrollable-content {
  max-height: 300px; /* Set maximum height for scrollable content */
  overflow-y: auto; /* Enable vertical scrolling */
}