/* ══ PDF CONTINUE ══ */
/* "Continue with..." button + dropdown menu in the toolbar */

pdf-continue {
  position: relative;
  display: flex;
  align-items: center;
}

/* Subtle border to distinguish from the primary Export button */
pdf-continue .tb-btn.secondary {
  border: 1px solid var(--grey-300);
}

/* ── Dropdown menu ── */
.continue-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(60, 64, 67, 0.15);
  min-width: 200px;
  padding: 4px;
  z-index: 1000;
}

/* ── Menu item ── */
.continue-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-900);
  cursor: pointer;
  text-align: left;
}

.continue-menu-item:hover {
  background: var(--grey-50);
}
