/*
 * System Log list view (SystemLogEntry_ListView) column sizing.
 *
 * The grid runs in a fixed-table layout (the Message preview row forces it),
 * so DevExpress writes the <col> widths inline and ignores the xafml
 * `<ColumnInfo Width="…"/>` model value. A stylesheet rule with !important is
 * the only thing that beats an inline width, so we cap the offending column
 * here. The `system-log-grid` class is attached by SystemLogColumnWidthController.
 *
 * Column order (left to right) on this view:
 *   1: group-expand indent (Company grouping)   <- col:nth-child(1)
 *   2: Timestamp (UTC)  [frozen]                 <- col:nth-child(2)
 *   3: Level            [frozen]
 *   ...Kind / Source / Event Code / Correlation Id
 *
 * Only the DateTimeOffset Timestamp column is capped; left unconstrained it
 * auto-sizes to ~450px, far wider than its value needs.
 */
.system-log-grid colgroup col:nth-child(2) {
    width: 210px !important;
}
