/* Live-10 friends empty + first-place CTA */
.friends-online-empty--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 4px 8px;
}
.friends-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-places-empty-cta {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(140, 210, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.city-places-empty-cta:hover {
  color: #fff;
}
.friends-section-label {
  margin: 14px 4px 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}
.friend-row--offline {
  opacity: 0.88;
}
.friend-presence-dot.is-offline {
  background: rgba(148, 163, 184, 0.85);
}

/* Friend pin action sheet on map */
.mnm-friend-map-sheet {
  position: fixed;
  z-index: 2500;
  width: min(210px, calc(100vw - 24px));
  padding: 10px 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(125, 252, 138, 0.38);
  background: linear-gradient(165deg, rgba(10, 28, 18, 0.96), rgba(6, 14, 12, 0.98));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 16px rgba(125, 252, 138, 0.14);
  color: rgba(220, 245, 228, 0.96);
}
.mnm-friend-map-sheet-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  margin-bottom: 8px;
  align-items: start;
}
.mnm-friend-map-sheet-head strong {
  font-size: 13px;
  font-weight: 650;
  color: #eafff4;
}
.mnm-friend-map-sheet-head span {
  grid-column: 1;
  font-size: 11px;
  opacity: 0.7;
}
.mnm-friend-map-sheet-close {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.mnm-friend-map-sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mnm-friend-map-sheet-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid rgba(125, 252, 138, 0.22);
  background: rgba(8, 18, 14, 0.72);
  color: inherit;
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.mnm-friend-map-sheet-btn:hover {
  border-color: rgba(125, 252, 138, 0.5);
  background: rgba(12, 28, 20, 0.9);
}
.mnm-friend-map-sheet-btn.is-locked {
  opacity: 0.72;
  cursor: not-allowed;
}
.mnm-friend-map-sheet-btn i:first-child {
  width: 14px;
  text-align: center;
  color: rgba(125, 252, 138, 0.95);
}
.mnm-friend-map-sheet-btn span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mnm-friend-map-sheet-lock {
  font-size: 10px;
  opacity: 0.85;
  color: rgba(255, 196, 120, 0.95);
}
