#penp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  width: 90%;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  border-radius: 8px;
  display: none;
}

.penp-popup-inner h2 {
  font-size: 1.25rem;
  margin-bottom: 1em;
  text-align: center;
}

.penp-icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5em;
}

.penp-stage input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.penp-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.penp-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #a51c30;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.penp-buttons .penp-no-thanks {
  background: #ccc;
  color: #333;
}

.penp-thankyou {
  text-align: center;
}

.penp-thankyou button {
  margin-top: 10px;
  padding: 10px 20px;
}

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