.follow-list-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.back-link {
  font-size: 0.88rem;
  color: #2e5c2e;
  text-decoration: none;
  white-space: nowrap;
}
.back-link:hover { text-decoration: underline; }
.follow-list-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.follow-count {
  font-size: 0.9rem;
  color: #888;
  font-weight: normal;
  margin-left: 4px;
}

.user-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
}
.user-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f3f3f3;
  transition: background 0.12s;
}
.user-list-item:last-child { border-bottom: none; }
.user-list-item:hover { background: #f8faf8; }

.user-list-avatar {
  flex-shrink: 0;
}
.user-list-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8f4e8;
  display: block;
}
.user-list-initial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2e5c2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  border: 2px solid #e8f4e8;
}

.user-list-info {
  flex: 1;
  min-width: 0;
}
.user-list-name {
  font-size: 0.95rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 3px;
}
.user-list-bio {
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-list-arrow {
  font-size: 1.2rem;
  color: #ccc;
  flex-shrink: 0;
}

.empty {
  background: #fff;
  border-radius: 10px;
  padding: 48px;
  text-align: center;
  color: #999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
