/**
 * GitHub Actions Plugin Style Overrides
 * 
 * Fixes the status text alignment issue in the CI/CD workflow runs page
 * where the status text (Completed, Aborted, etc.) appears on a new line
 * instead of inline with the status icon.
 * 
 * The WorkflowRunStatus component renders the icon and text as siblings
 * in a React Fragment without any flex container, causing the text to
 * wrap to a new line. This CSS ensures the parent TableCell displays
 * its children inline.
 * 
 * The Backstage Status components (StatusOK, StatusError, etc.) use the
 * class name pattern "BackstageStatus-status-*" with display: flex already.
 * However, the GitHub Actions plugin renders the status icon and description
 * text as siblings in a Fragment, not as children of the Status component.
 */

/* Fix status alignment in workflow run details and job step views */
/* Target TableCell elements that contain Backstage status components or status test IDs */
.MuiTableCell-root:has([class*="BackstageStatus"]),
.MuiTableCell-root:has([data-testid^="status-"]) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-config-sidebar-item > *:last-child {
  display: none;
}


/*# sourceMappingURL=main.2a6acda5.css.map*/