.user-profiles-outer {
  width: 100%;
  height: calc((36px + 24px) * 3 + 2 * 9px + 2 * 8px);
  max-height: unset;
  overflow-y: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.user-profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 13px;
  width: 100%;
}

.user-profile-item {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 8px 10px 8px 8px;
  margin-bottom: 0;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
}

.user-logo {
  width: 36px;
  height: 36px;
  background: #ffcf25;
  color: #454554;
  font-size: 21px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
}

.user-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffcf25;
}

.user-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-name {
  font-size: 15px;
  font-weight: 600;
  color: #454554;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-username {
  font-size: 13px;
  color: #90773c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-profiles-loading {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 8px 0;
}
