.blog-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
  padding: 0 20px;
}

.blog-category-tab {
  padding: 10px 20px;
  background-color: #f5f5f5;
  color: #333;
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-category-tab:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.blog-category-tab.active {
  background-color: #667eea;
  color: white;
  border-color: #667eea;
}