.popup {
  display: none; /* Awalnya sembunyikan popup */
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.button1 {
  background-color: #6e57e0;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}
.popup-bg {
  background-color: white;
  margin: 10px;
}
.btn-closepopup {
    text-align: end;
}
.ul-popup {
    list-style-type: disc;
    text-align: left;
    margin-left: 20px;
}