
#pf-popup-backdrop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}

#pf-popup {
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  font-family: arial;
  font-size: 16px;
}

#pf-popup .pf-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 35px;
  cursor: pointer;
}

#pf-popup .pf-image {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  border-radius: 50%;
  object-fit: cover;
}

#pf-popup .pf-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

#pf-popup .pf-text {
  overflow-y: auto;
}

#pf-popup .pf-text p:last-child {
  margin-bottom: 0;
}

.pf-hidden {
  display: none !important;
}

@media screen and (min-width: 600px) {
  #pf-popup {
    width: fit-content;
    padding: 50px;
  }
}
