#active-commands {
  margin: 40px auto;
  text-align: center;
  max-width: 900px;
}

#active-commands h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.commands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.commands-list span {
  background: #2c2f33;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s;
  border: 1px solid #5865f2;
}

.commands-list span:hover {
  background: #5865f2;
  transform: scale(1.05);
  cursor: default;
}

