.popzy__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition: opacity, visibility;
  transition-duration: 0.3s;
}

.popzy__container {
  position: relative;
  width: min(600px, 90%);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s;
}

.popzy__backdrop.show .popzy__container {
  transform: scale(1);
}
.popzy__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ebebeb;
  font-size: 2em;
  color: #666;
  border: none;
  outline: none;
}

.popzy__close:hover {
  background: #ddd;
  cursor: pointer;
}

.popzy__content {
  max-height: 80vh;
  overflow-y: auto;
  margin-top: 20px;
}

.popzy__backdrop.show {
  opacity: 1;
  visibility: visible;
}

.popzy__footer {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.popzy__no-scroll {
  overflow: hidden;
}
