.hashtag-suggestions {
  display: none;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-top: 8px;
  padding: 8px;
  max-width: 300px;
}

.hashtag-suggestions.show {
  display: block;
}

.hashtag-suggestion-item {
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
}

.hashtag-suggestion-item:hover {
  background: #f3f4f6;
}

.trending-box {
  background: white;
  border-radius: 16px;
  padding: 16px;
  margin-top: 20px;
}

.trending-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.trending-item a {
  text-decoration: none;
  color: #3b82f6;
  font-weight: 600;
}