#milkweed-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#milkweed-popup-box {
  background: #fff;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

#milkweed-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

#milkweed-popup-close:hover {
  color: #000;
}

#milkweed-popup-box h2 {
  margin-top: 0;
}

#milkweed-popup-buttons {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.milkweed-btn-primary,
.milkweed-btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.milkweed-btn-primary {
  background: #2e7d32; /* adjust to match your brand green */
  color: #fff;
}

.milkweed-btn-secondary {
  background: #eee;
  color: #333;
}

@media (max-width: 600px) {
  #milkweed-popup-box {
    padding: 20px;
  }
}