/* Streaming Specific Styles */

.terminal-status {
	color: #ffff00;
	font-weight: bold;
}

.terminal-complete {
	color: #00ff00;
	font-weight: bold;
	margin-top: 10px;
}

.terminal-error {
	color: #ff0000;
	font-weight: bold;
	margin-top: 10px;
}

.terminal-stopped {
	color: #ff8800;
	font-weight: bold;
	margin-top: 10px;
}

/* Button Styles */
.button {
	background: #007bff;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s;
	margin: 10px 10px 10px 0;
	text-decoration: none;
	display: inline-block;
}

.button:hover:not(:disabled) {
	background: #0056b3;
	transform: translateY(-1px);
}

.button:disabled {
	background: #6c757d;
	cursor: not-allowed;
	transform: none;
}

.button.success {
	background: #28a745;
}

.button.success:hover:not(:disabled) {
	background: #218838;
}
