.community-card,
.trending-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #ccc;
}

.community-avatar {
  width: 24px;
  height: 24px;
}

.community-info,
.trending-info {
  flex-grow: 1;
  margin-left: 12px;
}

.community-info h3,
.trending-info h3 {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin: 0;
}

.community-info p,
.trending-info p {
  font-size: 12px;
  margin: 0;
  color: #666;
}

.join-button {
  background-color: #388e3c;
  border: 1px solid #2e7d32;
  color: white;
  padding: 4px 12px;
  font-size: 14px;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.join-button:hover {
  background-color: #2e7d32;
}

.search-header {
  padding: 12px 16px;
  border-bottom: 1px solid #ccc;
  background-color: #f5f5f5;
  color: #000;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 9999px;
  padding: 8px 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.search-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #000;
  font-size: 16px;
  width: 100%;
}
.see-more-link {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #22a;
  margin-top: 8px;
}
