/* ═══════════════════════════════════════════════════════════════════════════
   Watch list - pinned-positions chip strip + detail-panel pin toggle.
   Lets HRBPs pin a small set of key roles for quick access.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Pinned strip (between filter-activity strip and workspace) ────────── */
#watch-strip {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  font-family: 'IBM Plex Sans', sans-serif;
  z-index: 99;
  position: relative;
  animation: watchStripIn 0.22s ease-out;
}
#watch-strip.hidden { display: none; }
@keyframes watchStripIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.watch-strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  flex-wrap: wrap;
  overflow-x: auto;
}
.watch-strip-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF8C42;
  flex: 0 0 auto;
}
.watch-strip-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}
.watch-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 10px;
  border-radius: 14px;
  border: 1px solid #FED7AA;
  background: #FFFBEB;
  font-size: 11px;
  font-weight: 600;
  color: #92400E;
  cursor: pointer;
  transition: all 0.12s ease;
  font-family: inherit;
  white-space: nowrap;
}
.watch-chip:hover {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #78350F;
}
.watch-chip-star {
  color: #F59E0B;
  font-size: 12px;
  font-weight: 800;
}
.watch-chip-label {
  font-weight: 700;
  color: #111827;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.watch-chip-incumbent {
  font-size: 10px;
  color: #6B7280;
  font-weight: 500;
}
.watch-chip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
  color: #92400E;
  font-size: 13px;
  font-weight: 800;
  margin-left: 2px;
  transition: all 0.12s ease;
}
.watch-chip-x:hover {
  background: #DC2626;
  color: #FFFFFF;
}
.watch-strip-clear {
  flex: 0 0 auto;
  padding: 3px 10px;
  border: 1px solid #FCA5A5;
  background: #FFFFFF;
  border-radius: 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: #B91C1C;
  cursor: pointer;
  letter-spacing: 0.02em;
  font-family: inherit;
  transition: all 0.12s ease;
}
.watch-strip-clear:hover {
  background: #DC2626;
  color: #FFFFFF;
}

/* ── Detail-panel pin toggle (extends .dp-v2-action) ───────────────────── */
.dp-v2-action-pinned {
  background: #FFFBEB;
  border-color: #F59E0B;
  color: #92400E;
  font-weight: 800;
}
.dp-v2-action-pinned:hover {
  background: #FEF3C7;
  border-color: #D97706;
  color: #78350F;
}
