#een-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99998;
}
#een-modal {
  position: fixed; inset: 0;
  display: grid;
  place-items: center;
  z-index: 99999;
}
#een-modal .een-modal-inner {
  background: #fff;
  color: #111;
  max-width: 560px;
  width: calc(100% - 32px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  outline: none;
}
#een-modal h2 { margin: 0 0 8px 0; font-size: 1.25rem; }
#een-modal p { margin: 0 0 16px 0; line-height: 1.5; }
#een-modal code.een-url {
  display: inline-block; word-break: break-all;
  background: #f6f8fa; padding: 4px 6px; border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
}
#een-modal .een-actions { display: flex; justify-content: flex-end; gap: 8px; }
#een-modal .een-btn { appearance: none; border: 1px solid #ddd; background: #f3f4f6; padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 0.95rem; }
#een-modal .een-btn.een-continue { background: #111827; color: #fff; border-color: #111827; }
#een-overlay.een-hidden, #een-modal.een-hidden { display: none !important; }