/* popup.css */
.sae-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  padding: 20px;
}
.sae-modal {
  background: #bcd823;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}
.sae-modal .sae-modal-body {
  padding: 18px;
  text-align: center;
}
.sae-modal img.sae-modal-image {
  max-width: 100%;
  height: auto;
  display:block;
  margin: 0 auto 12px;
}
.sae-modal .sae-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .sae-modal { max-width: 92%; }
}