.marketplace-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
  margin-bottom: 15px;
}

.refresh-btn {
  background: #007bff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

.refresh-btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

.refresh-icon {
  font-size: 16px;
  display: inline-block;
  animation: none;
}

.refresh-btn:active .refresh-icon {
  animation: spin 0.5s ease-in-out;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}