/* ── PAGE VIEW (geçici — Stage 3'te kaldırılacak) ── */
#view-page{flex:1;display:flex;flex-direction:column;overflow:hidden;}
#demo-frame{flex:1;border:none;background:#fff;width:100%;height:100%;}
#btn-select-page{display:none;}

/* ── PAGE PICKER MODAL ── */
#page-picker-bg{position:fixed;inset:0;background:rgba(0,0,0,.65);display:flex;align-items:center;justify-content:center;z-index:9000;}
#page-picker-box{background:var(--panel);border:1px solid var(--border2);border-radius:8px;padding:20px;min-width:340px;max-width:480px;width:90%;}
#page-picker-box h3{font-size:13px;letter-spacing:2px;color:var(--cyan);margin-bottom:14px;}
#page-picker-list{display:flex;flex-direction:column;gap:6px;max-height:320px;overflow-y:auto;}
.page-pick-item{padding:8px 12px;border-radius:5px;border:1px solid var(--border);cursor:pointer;font-size:12px;color:var(--text);display:flex;align-items:center;gap:8px;transition:all .15s;}
.page-pick-item:hover{border-color:var(--cyan);background:var(--cyan-g);color:var(--cyan);}
.page-pick-item.active{border-color:var(--green);background:rgba(0,255,157,.06);color:var(--green);}
#page-picker-empty{font-size:12px;color:var(--muted);padding:12px 0;}
#page-picker-box .modal-btns{margin-top:14px;display:flex;justify-content:flex-end;}

/* ── CHAT VIEW ── */
#view-chat{flex:1;display:flex;flex-direction:column;overflow:hidden;}
#chat-messages{flex:1;overflow-y:auto;padding:16px 20px;display:flex;flex-direction:column;gap:3px;}
.msg-row{display:flex;gap:8px;max-width:min(560px,88%);}
.msg-row.entity{align-self:flex-start;margin-left:36px;flex-direction:row-reverse;}
.msg-row.user{align-self:flex-start;}
.msg-row.system{align-self:center;max-width:100%;}
.msg-row.entity+.msg-row.user,.msg-row.user+.msg-row.entity{margin-top:10px;}
.msg-row.system+.msg-row,.msg-row+.msg-row.system{margin-top:6px;}
.avatar{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;flex-shrink:0;margin-top:2px;}
.avatar.ea{background:var(--cyan-d);border:1px solid var(--cyan);color:var(--cyan);}
.avatar.ua{background:rgba(167,139,250,.15);border:1px solid var(--purple);color:var(--purple);}
.bubble{padding:8px 12px;border-radius:10px;font-size:13px;line-height:1.55;max-width:100%;word-break:break-word;user-select:text;}
.entity .bubble{background:var(--panel2);border:1px solid var(--border);border-top-right-radius:2px;}
.user .bubble{background:rgba(167,139,250,.1);border:1px solid rgba(167,139,250,.3);border-top-right-radius:2px;}
.system .bubble{background:transparent;border:none;color:var(--muted);font-size:11px;font-style:italic;white-space:pre-line;}
.rejected-live-panel{position:fixed;top:14px;right:18px;z-index:2147483647;background:#f4f7fb;border:1px solid #c6d4e6;color:#455b7c;border-radius:12px;padding:12px 14px;min-width:260px;max-width:min(680px,96vw);box-shadow:0 4px 24px rgba(60,90,140,.28);animation:rejected-panel-in .18s ease;user-select:none;}
@keyframes rejected-panel-in{from{opacity:0;transform:translateY(12px);}to{opacity:1;transform:translateY(0);}}
.rejected-live-header{display:flex;align-items:center;justify-content:space-between;gap:8px;cursor:move;}
.rejected-live-title{font-size:11px;font-weight:700;color:#2d4363;}
.rejected-live-close{flex-shrink:0;background:none;border:1px solid #c6d4e6;border-radius:5px;color:#4b73d9;font-size:11px;line-height:1;padding:1px 6px;cursor:pointer;transition:background .15s,color .15s;}
.rejected-live-close:hover:not(:disabled){background:#e8eef6;color:#c0392b;}
.rejected-live-close:disabled{color:#b0bdd4;border-color:#dde5f0;cursor:not-allowed;}
.rejected-live-status{margin-top:2px;font-size:10px;color:#617a9f;}
.rejected-live-list{margin-top:6px;display:flex;flex-direction:column;gap:3px;max-height:140px;overflow:auto;padding-right:2px;}
.rejected-live-item{font-size:11px;color:#3e5578;line-height:1.4;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:6px;white-space:normal;}
.rejected-live-icon{font-size:13px;line-height:1;}
.rejected-live-name{min-width:0;white-space:normal;word-break:break-word;}
.rejected-live-reason{font-size:10px;color:#8a6030;font-style:italic;white-space:normal;word-break:break-word;}
.rejected-live-empty{font-size:10px;color:#7890b0;font-style:italic;}
.rejected-live-progress-label{margin-top:7px;font-size:10px;color:#60799f;}
.rejected-live-progress{margin-top:4px;height:6px;border-radius:999px;background:#dbe4f2;border:1px solid #b6c4da;overflow:hidden;}
.rejected-live-progress>span{display:block;height:100%;width:0;background:linear-gradient(90deg,#4b73d9,#39b67f);transition:width .2s ease;}
.msg-meta{font-size:10px;color:var(--muted);margin-top:2px;}
.entity .msg-meta{padding-right:2px;text-align:right;}
.user .msg-meta{padding-left:2px;}
.typing{display:flex;gap:4px;padding:8px 12px;background:var(--panel2);border:1px solid var(--border);border-radius:10px;border-top-left-radius:2px;width:46px;}
.typing span{width:5px;height:5px;border-radius:50%;background:var(--muted);animation:blink 1.2s infinite;}
.typing span:nth-child(2){animation-delay:.2s;}
.typing span:nth-child(3){animation-delay:.4s;}
@keyframes blink{0%,80%,100%{opacity:.2}40%{opacity:1}}
#chat-footer{display:flex;align-items:stretch;gap:6px;padding:6px 10px;background:#edf2f8;border-top:1px solid #c3cede;flex-shrink:0;transition:background .15s,border-color .15s;}
#chat-footer.drag-over{background:#e6f0ff;border-top:3px dashed #4b73d9;outline:3px dashed #4b73d9;outline-offset:-3px;border-radius:4px;}
#chat-name{width:86px;background:var(--bg);border:1px solid var(--border);color:var(--muted);font-family:var(--font);font-size:10px;padding:4px 7px;border-radius:5px;}
#chat-name:focus{outline:none;border-color:var(--purple);color:var(--text);}
#chat-msg{flex:1;background:var(--bg);border:1px solid var(--border);color:var(--text);font-family:var(--font);font-size:13px;padding:7px 10px;border-radius:5px;min-height:86px;max-height:240px;resize:vertical;line-height:1.45;}
#chat-msg:focus{outline:none;border-color:var(--cyan);}
#chat-msg::placeholder{color:var(--muted);}
#chat-msg-editor{flex:1;min-height:0;height:0;border:1px solid #c8d3e3;border-radius:10px;overflow:hidden;background:#fcfdff;width:100%;}
#chat-editor-resizer{display:none;}
#chat-msg-editor:focus-within{border-color:#4b73d9;box-shadow:inset 0 0 0 1px rgba(75,115,217,.2);}
#chat-msg-type{background:#f3f6fb;border:1px solid #b7c5da;color:#2f415e;font-family:var(--font);font-size:9px;padding:5px 8px;border-radius:9px;min-width:102px;}
#chat-msg-type:focus{outline:none;border-color:#4b73d9;color:#1f3353;}
#chat-input-wrap{display:flex;flex-direction:column;gap:5px;width:100%;}
#chat-composer-row{display:flex;gap:8px;align-items:stretch;}
#chat-editor-col{flex:1;display:flex;flex-direction:column;min-width:0;min-height:0;}
#chat-feedback-panel{width:260px;min-width:220px;max-width:320px;height:200px;border:1px solid #b7c5da;border-radius:12px;background:#edf2f8;padding:6px;display:flex;flex-direction:column;gap:6px;min-height:0;overflow:hidden;}
#chat-feedback-title{font-size:10px;letter-spacing:1px;color:#3a4f71;padding:2px 4px;}
#chat-feedback-items{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start;gap:6px;flex:1 1 auto;max-height:none;overflow:auto;min-height:0;}
.chat-feedback-item{border:1px solid #c6d4e6;border-radius:8px;background:#f7faff;padding:6px;display:flex;flex-direction:row;flex-wrap:wrap;align-items:center;column-gap:8px;row-gap:5px;flex:1 1 calc(50% - 6px);min-width:120px;}
.chat-feedback-label{font-size:10px;color:#2f415e;flex:1 1 100%;}
.chat-feedback-item input[type="text"],.chat-feedback-item select{height:26px;border:1px solid #b7c5da;border-radius:7px;background:#fff;color:#2f415e;padding:3px 8px;font-size:11px;font-family:var(--font);flex:1 1 100%;min-width:0;}
.chat-feedback-item select:focus,.chat-feedback-item input[type="text"]:focus{outline:none;border-color:#4b73d9;}
.chat-feedback-group{display:flex;flex-direction:row;flex-wrap:wrap;gap:4px 8px;flex:1 1 100%;}
.chat-feedback-choice{display:flex;align-items:center;gap:6px;font-size:10px;color:#415a80;flex:1 1 calc(50% - 8px);min-width:108px;}
.chat-feedback-choice input{accent-color:#4b73d9;}
.chat-feedback-action{height:28px;border-radius:8px;border:1px dashed #9bb0ce;background:#e8eef8;color:#7b91b2;font-size:10px;cursor:not-allowed;flex:1 1 100%;}
#chat-side-panel{width:176px;border:1px solid #b7c5da;border-radius:12px;background:#edf2f8;padding:5px;display:flex;flex-direction:column;gap:5px;min-height:0;overflow:auto;}
#chat-side-panel label{display:none;}
#host-preview{border:1px solid #b7c5da;border-radius:10px;background:#e6edf6;padding:5px;display:flex;justify-content:center;align-items:center;min-height:104px;}
#host-preview img{max-width:100%;max-height:86px;object-fit:contain;border-radius:4px;}
#chat-send-btn{width:100%;height:28px;border-radius:10px;border:1px solid #89a7e8;background:#dfe8ff;color:#6f93df;font-size:10px;padding:1px 7px;}
#chat-attachments-row{display:flex;gap:8px;align-items:center;}
#chat-attachments{flex:1;display:flex;flex-wrap:wrap;gap:3px;height:max-content;min-height:24px;max-height:82px;border:1px dashed #9fb2cc;border-radius:12px;background:#f4f7fb;overflow:auto;padding:4px;}
#chat-attachments.drag-over{border-color:#4b73d9;background:#eaf1ff;}
.chat-attachments-placeholder{font-size:18px;color:#314a70;display:flex;align-items:center;justify-content:center;width:100%;min-height:18px;}
#chat-actions-panel{min-width:240px;border:1px solid #b6c4da;border-radius:12px;background:#e9eef6;padding:3px;display:flex;flex-wrap:nowrap;gap:3px;align-items:center;align-content:center;box-shadow:inset 0 0 0 1px rgba(255,255,255,.55);overflow-x:auto;}
#chat-actions-panel .btn,#chat-actions-panel select{height:28px;border-radius:9px;border:1px solid #b7c5da;background:#dfe6f0;color:#324764;padding:1px 6px;font-size:9px;}
#chat-actions-panel #chat-msg-type{flex:1 1 102px;min-width:102px;}
#chat-actions-panel #editor-font-select{flex:1 1 122px;min-width:122px;}
#chat-actions-panel #editor-font-size{flex:0 0 58px;min-width:58px;}
#chat-actions-panel .btn{flex:0 0 74px;}
#chat-actions-panel .btn:nth-last-of-type(2){margin-left:auto;}
.chat-att-item{display:flex;align-items:center;gap:0;padding:2px 8px;background:#e8eef6;border:1px solid #b8c6da;border-radius:8px;max-width:220px;height:max-content;}
.chat-att-item-progress{min-width:200px;max-width:300px;align-items:flex-start;}
.chat-att-item-sent{border-color:#40b87e;background:#e9f8f0;box-shadow:inset 0 0 0 1px rgba(64,184,126,.18);}
.chat-att-item-sent .chat-att-preview{border-color:#40b87e;background:#f4fff9;}
.chat-att-item-sent .chat-att-name{color:#1f6b48;}
.chat-att-item-sent .chat-att-info{color:#2b8a5d;font-weight:600;}
.chat-att-item-removing{border-color:#e05555 !important;background:#fff0f0 !important;box-shadow:inset 0 0 0 1px rgba(224,85,85,.18) !important;opacity:.6;transition:opacity .25s,background .25s,border-color .25s;}
.chat-att-item-removing .chat-att-name{color:#9b2a2a !important;}
.chat-att-item-removing .chat-att-info{color:#c0392b !important;}
.chat-att-preview{width:22px;height:22px;border-radius:4px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#f7f9fd;border:1px solid #b8c6da;font-size:12px;flex-shrink:0;}
.chat-att-preview img{width:100%;height:100%;object-fit:cover;display:block;}
.chat-att-meta{display:flex;flex-direction:column;min-width:0;}
.chat-att-name{font-size:8px;color:#2f415e;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:140px;line-height:1;}
.chat-att-info{font-size:7px;color:#6a7f9f;line-height:1;}
.chat-att-item-progress .chat-att-name{max-width:240px;}
.chat-zip-progress{margin-top:0;width:100%;height:4px;border-radius:999px;background:#dbe4f2;border:1px solid #b6c4da;overflow:hidden;}
.chat-zip-progress>span{display:block;height:100%;background:linear-gradient(90deg,var(--cyan),var(--green));width:0%;transition:width .2s ease;}
.chat-att-remove{background:transparent;border:none;color:#6a7f9f;cursor:pointer;font-size:10px;line-height:1;padding:1px 3px;border-radius:3px;}
.chat-att-remove:hover{color:var(--red);background:rgba(255,71,87,.12);}
#chat-toolbar{display:flex;align-items:center;gap:6px;}
#chat-toolbar .btn{padding:4px 9px;font-size:11px;}
#chat-file-input{display:none;}
.bubble-attachments{display:flex;flex-wrap:wrap;gap:6px;margin-top:6px;}
.bubble-type-chip{display:inline-block;margin-top:6px;font-size:10px;padding:2px 7px;border:1px solid var(--purple);border-radius:999px;color:var(--purple);background:rgba(167,139,250,.1);}
.bubble-att-chip{font-size:10px;padding:2px 7px;border:1px solid var(--border);border-radius:999px;color:var(--muted2);background:var(--bg);}
