.collection-controls {
  margin: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sort-select, .filter-select {
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.sort-select:focus, .filter-select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.sort-select:hover, .filter-select:hover {
  border-color: #6366f1;
  transform: translateY(-1px);
}

.network-badge {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%) !important;
  color: #ffffff !important;
  border: 2px solid #4b5563 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}