.search-results {
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  padding: 8px;
}
.search-result-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.search-result-item:hover { background: var(--hover); }
.search-avatar { position: relative; margin-right: 10px; }
.search-status {
  position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--bg-secondary);
}
.search-status.online { background: var(--online); }
.search-status.offline { background: var(--text-muted); }
.search-info { flex: 1; min-width: 0; }
.search-name { font-weight: 600; font-size: 14px; }
.search-id { font-size: 12px; color: var(--text-muted); }
.search-add-btn {
  background: var(--online); color: white;
  border: none; width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer;
  font-size: 18px; line-height: 1;
}
.search-empty { padding: 12px; color: var(--text-muted); text-align: center; }