/* USERS: scrollable box */
.search-users-scroller {
  max-height: 320px;        /* tweak: controls how many rows are visible */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.25rem;

}

.s-users {
    margin-top: 4rem;
}

.search-users-scroller::-webkit-scrollbar {
  width: 6px;
}
.search-users-scroller::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
}

/* Compact user card */
.search-user-card {
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  
}

/* Avatar */
.search-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.search-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.search-user-handle {
  font-size: 0.9rem;
  font-weight: 600;
}
.search-user-name {
  font-size: 0.8rem;
  opacity: 0.8;
}
.search-user-bio {
  font-size: 0.78rem;
  line-height: 1.3;
}

/* Footer */
.search-user-footer {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
