/* Pulse Pill CSS */
.pulse-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 18, 17, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 12px 4px 6px;
  color: #f4f0e7;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(12px);
  margin-left: 12px;
}
.pulse-pill:hover {
  background: rgba(255, 255, 255, 0.08);
}
.pulse-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #565f59;
  position: relative;
}
.pulse-pill[data-active="true"] .pulse-ring {
  background: #c78b55;
  box-shadow: 0 0 8px #c78b55;
}
@keyframes pulse-anim {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199, 139, 85, 0.7); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(199, 139, 85, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(199, 139, 85, 0); }
}
.pulse-text {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pulse-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #181b19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(24px);
  z-index: 9999;
}
.pulse-dropdown.hidden {
  display: none;
}
.pulse-empty {
  padding: 12px;
  text-align: center;
  color: #afb6ad;
  font-size: 11px;
}
.pulse-item {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-align: left;
}
.pulse-item:hover {
  background: rgba(199, 139, 85, 0.15);
}
.pulse-item b {
  color: #f4f0e7;
  font-size: 11px;
}
.pulse-item small {
  color: #afb6ad;
  font-size: 10px;
}
@media (max-width: 768px) {
  .pulse-pill { margin-left: 0; margin-right: auto; }
}
