.tableContainer { width: 100%; overflow-x: auto; margin-top: 20px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); border-radius: 8px; } .jobTable { width: 100%; border-collapse: collapse; background-color: white; font-size: 14px; } .tableHeader { background-color: #f8f9fa; border-bottom: 2px solid #dee2e6; } .tableHeader th { padding: 12px 16px; text-align: left; font-weight: 600; color: #495057; } .tableRow { border-bottom: 1px solid #dee2e6; } .tableRow:hover { background-color: #f8f9fa; } .tableCell { padding: 12px 16px; } .descriptionCell { max-width: 300px; white-space: normal; word-wrap: break-word; } .statusBadge { padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 500; } .statusCompleted { background-color: #e6f4ea; color: #1b873f; } .statusInProgress { background-color: #fff3e0; color: #ff9800; } .statusFailed { background-color: #ffebee; color: #d32f2f; } .statusDefault { background-color: #f8f9fa; color: #495057; } .actionsContainer { display: flex; gap: 8px; } .actionButton { padding: 6px 12px; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 12px; } .pauseButton { background-color: #007bff; } .pauseButton:hover { background-color: #0056b3; } .deleteButton { background-color: #dc3545; } .deleteButton:hover { background-color: #c82333; } .disabledButton { background-color: #ccc; cursor: not-allowed; } .disabledButton:hover { background-color: #ccc; } .inProgress { background-color: #f0f7f4; }