/* ── FRIENDS SYSTEM STYLES ──────────────────────────────────────────────── */

.friends-container {
  font-family: inherit;
  color: var(--text, #e2e2ee);
}

.search-row input::placeholder {
  color: var(--muted, #4a4a6a);
  font-size: 12.5px;
}

#friends-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  background: var(--surface2, #14141e) !important;
}

#friends-search-results > div:hover {
  background: rgba(255, 255, 255, 0.02);
}

#friends-pending-list > div,
#friends-list-container > div {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#friends-pending-list > div:hover,
#friends-list-container > div:hover {
  border-color: rgba(79, 124, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  transform: translateY(-1px);
}

/* Scrollbars */
#friends-list-container::-webkit-scrollbar,
#friends-search-results::-webkit-scrollbar {
  width: 4px;
}
#friends-list-container::-webkit-scrollbar-track,
#friends-search-results::-webkit-scrollbar-track {
  background: transparent;
}
#friends-list-container::-webkit-scrollbar-thumb,
#friends-search-results::-webkit-scrollbar-thumb {
  background: var(--border, #1c1c2a);
  border-radius: 2px;
}
#friends-list-container::-webkit-scrollbar-thumb:hover,
#friends-search-results::-webkit-scrollbar-thumb:hover {
  background: var(--muted, #4a4a6a);
}
