.suggested-friends-container {
  padding: 10px;
  background: #f8f8f8;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 10px;
}

.scrollable-friends-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  padding-right: 1rem; /* or whatever width you need */
  /* Allow wrapping for no-suggestions card */
  flex-wrap: nowrap; /* Default for horizontal scroll */
}

.friend-card {
  min-width: 160px;
  flex: 0 0 auto;
  background: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.friend-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.friend-name {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.no-suggestions-card {
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 15px 0;
}
