/* Hide the ollama endpoint from the model/endpoint selector dropdown */
[data-testid="endpoint-item-ollama"],
[data-endpoint="ollama"],
button[value="ollama"],
div[data-value="ollama"] {
  display: none !important;
}

/* ============================================================
   HIDE CODE EXECUTION BLOCKS
   Employees see: "Finished analysis" + file download link
   Employees DON'T see: Python code, stdout output, print()
   Admin can temporarily override by toggling in browser DevTools
   ============================================================ */

/* Hide the code + stdout block entirely */
.code-analyze-block {
  display: none !important;
}

/* Also hide the animated wrapper div that contains the code block */
.code-analyze-block + div,
div:has(> .code-analyze-block) {
  display: none !important;
}

/* Keep the progress indicator clean — just show "Finished analysis" text */
/* Keep AttachmentGroup (file download buttons) fully visible */
