#command-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  max-width: 800px;
}

.command-item {
  display: flex;
  align-items: center;
  background-color: #2b2d31;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #5865f2;
  transition: transform 0.2s ease, background-color 0.2s;
}

.command-name {
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 1.1em;
  color: #ffffff;
  min-width: 180px;
  flex-shrink: 0;
}

.command-desc {
  color: #dbdee1;
  font-size: 0.95em;
  line-height: 1.4;
}
