/* annotate.css — shared styling for the review annotation tool.
   Neutral, route-agnostic. Removed before production. */

.annotate-ui {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.annotate-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, background 160ms ease;
}
.annotate-toggle:hover { transform: translateY(-2px); }
.annotate-toggle.is-active { background: #c0392b; }

.annotate-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  color: #1a1a1a;
}
.annotate-bar button {
  border: 1px solid #d0d0d0;
  background: #f6f6f6;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
}
.annotate-bar button:hover { background: #ececec; }
.annotate-count { font-weight: 600; white-space: nowrap; }

/* crosshair while placing pins */
body.annotate-active { cursor: crosshair; }

.annotate-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #c0392b;
  color: #fff;
  font: 600 12px/1 system-ui, sans-serif;
  cursor: pointer;
  z-index: 99998;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .annotate-toggle { transition: none; }
}
