/* paidshares.css — module styles for Paid Shares surfaces that post-date the
   style.css freeze (Module-Bolt Rule). Phase 6 first: the "Boost ideas" advisory
   panel + its entry button. Uses the shared theme tokens so it tracks light/dark.
   (The older paid-* rules still live in style.css; new paid styles land here.) */

.paid-boost-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.paid-boost-btn svg { width: 15px; height: 15px; }

.paid-boost-load {
  font-size: 13px;
  padding: 6px 2px;
}

/* The suggestions card — reads as helpful/advisory, distinct from the priced
   review meta above it. Accent hairline on the left = "tips", not settings. */
.paid-boost {
  margin: 12px 0 4px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.paid-boost-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.paid-boost-title svg { width: 16px; height: 16px; color: var(--accent); }

.paid-boost-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.paid-boost-list li {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}
.paid-boost-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
}
