/* Custom styles for AI code blocks */
pre.highlight-AI {
  background-color: #f0f7ff;  /* Light blue background */
  border-left: 3px solid #0078d7;  /* Azure blue border */
  padding-left: 1em;
}

/* Style for notebook command blocks with ! */
.highlight-python pre:has(span.gp + span.ch) {
  background-color: #f5f5f5;  /* Light gray for terminal commands */
  border-left: 3px solid #555;
}

/* Optional: Add a subtle AI indicator */
pre.highlight-AI::before {
  content: "AI";
  position: absolute;
  right: 10px;
  top: 5px;
  color: #0078d7;
  font-size: 0.8em;
  font-weight: bold;
  opacity: 0.6;
}
