.popup-unique {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content-unique {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  max-width: 80%; /* Lebar maksimum popup */
  max-height: 80%; /* Tinggi maksimum popup */
  overflow: auto; /* Tambahkan overflow untuk konten yang lebih besar */
}

.close-unique {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.close-unique:hover,
.close-unique:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-image-unique {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
