/* The only thing Resume Insite puts on a demo site.
   Everything else on these pages belongs to the demo's own design, because the
   whole claim is that they do not share one. */
.demo-badge {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 100px;
  background: #1A1714;
  color: #FBF9F5;
  font: 400 13px/1 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), 0 12px 32px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.demo-badge b { font-weight: 600; }
.demo-badge:hover { background: #B4501B; transform: translateY(-2px); }

.demo-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B4501B;
  flex: none;
}
.demo-badge:hover .demo-badge__dot { background: #FBF9F5; }

.demo-badge__arrow { opacity: 0.6; }

@media (max-width: 520px) {
  .demo-badge { right: 10px; bottom: 10px; font-size: 12px; padding: 9px 12px; }
}

/* Inside an examples-page preview the badge is unreadable clutter. */
.is-embedded .demo-badge { display: none; }
