/* Основной контейнер */
.custom-table-container {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}
  
  /* Карточка команды */
  .custom-flex-table-row {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 12px;
    background-color: #f9f9f9;
  }
  
  /* Команда */
  .custom-command-column {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
  }
  
  /* Пример команды */
  .custom-example-column {
    font-style: italic;
    margin-bottom: 8px;
    color: #555;
  }
  
  /* Описание команды */
  .custom-description-column {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.5;
  }
  
  /* Версия команды */
  .custom-version-column {
    font-size: 14px;
    color: #888;
    font-style: italic;
  }