/* Tabs */
.tabs { display: flex; margin-top: 20px; flex-wrap: wrap; }
.tab-btn { background:#f1f1f1; border:none; padding:10px 15px; cursor:pointer; margin-right:5px; border-radius:5px 5px 0 0; }
.tab-btn.active { background:#007bff; color:#fff; }

/* Editor */
#editor-container { margin-top: 10px; }
.CodeMirror { height: 400px; border:1px solid #ccc; border-radius:5px; }
#filename { width:100%; padding:8px; margin-bottom:5px; border-radius:5px; border:1px solid #ccc; }
button { margin-top:5px; padding:8px 15px; border:none; border-radius:5px; cursor:pointer; background:#007bff; color:#fff; }

/* Prompt panel */
.prompt-panel textarea { width:100%; padding:8px; border-radius:5px; border:1px solid #ccc; margin-bottom:5px; }
.prompt-panel button { padding:8px 15px; background:#28a745; color:#fff; border:none; border-radius:5px; cursor:pointer; }