.voxfor-ml-bulk-section {
	background: #fff;
	border: 1px solid #ccd0d4;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.voxfor-ml-bulk-actions {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}

.voxfor-ml-active-jobs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.voxfor-ml-job-card {
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
}

.voxfor-ml-job-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.voxfor-ml-job-title {
	font-weight: 600;
	font-size: 16px;
}

.voxfor-ml-job-status {
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.voxfor-ml-job-status.running {
	background: #fff3cd;
	color: #856404;
}

.voxfor-ml-job-status.completed {
	background: #d4edda;
	color: #155724;
}

.voxfor-ml-job-status.failed {
	background: #f8d7da;
	color: #721c24;
}

.voxfor-ml-job-progress {
	margin: 15px 0;
}

.voxfor-ml-progress-bar {
	width: 100%;
	height: 20px;
	background: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.voxfor-ml-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #0073aa, #00a0d2);
	transition: width 0.3s ease;
}

.voxfor-ml-progress-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	font-weight: 600;
	color: #333;
}

.voxfor-ml-job-details {
	font-size: 14px;
	color: #666;
}

.voxfor-ml-job-actions {
	margin-top: 15px;
	display: flex;
	gap: 10px;
}

.voxfor-ml-job-log {
	margin-top: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	max-height: 200px;
	overflow-y: auto;
}

.voxfor-ml-job-log-header {
	background: #f5f5f5;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.voxfor-ml-job-log-toggle {
	background: none;
	border: none;
	color: #0073aa;
	cursor: pointer;
	font-size: 12px;
}

.voxfor-ml-job-log-content-wrapper {
	display: none;
	padding: 10px;
	background: #fafafa;
	max-height: 150px;
	overflow-y: auto;
	flex: 1;
}

#voxfor-ml-job-log-content {
	font-family: monospace;
	font-size: 12px;
	line-height: 1.5;
	white-space: pre-wrap;
} 