/* Hover tooltips for links — shown on mouse-over unless user disabled hints */
#wwf-hint-tooltip {
  position: fixed;
  z-index: 10000;
  max-width: 320px;
  padding: 0.5rem 0.7rem;
  font-size: 0.8rem;
  line-height: 1.4;
  font-family: var(--wwf-font, "Avenir", system-ui, sans-serif);
  color: #fff;
  background: #1a237e;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(26, 35, 126, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
}

#wwf-hint-tooltip.visible {
  opacity: 1;
}

a.wwf-has-hint {
  cursor: help;
}

body.wwf-hints-off a.wwf-has-hint {
  cursor: inherit;
}

body.wwf-hints-off #wwf-hint-tooltip {
  display: none !important;
}

.manual-hint {
  font-size: 0.85rem;
  color: #3949ab;
  background: #f3f4fb;
  border-left: 3px solid #5c6bc0;
  padding: 0.4rem 0.6rem;
  margin: 0 0 0.35rem;
  border-radius: 0 4px 4px 0;
}

.manual-hint + a,
.manual-hint + .link-grid,
.manual-hint + .open-btn {
  margin-top: 0;
}

.manual-embed {
  width: 100%;
  min-height: 420px;
  border: 1px solid #c5cae9;
  border-radius: 8px;
  margin: 0.75rem 0 1rem;
  background: #fafafa;
}

.account-card {
  max-width: 520px;
  padding: 1.25rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.account-card label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0.75rem 0;
}

.account-card .hint-note {
  color: #5f6368;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}