/* sidebar-chat.css — встроенный правый AI помощник (бывший floating)
   Подключается на каждой странице pipeline. Добавляет правую панель 340px.
   Тело страницы получает padding-right через body.with-sidebar-chat
*/

body.with-sidebar-chat{padding-right:340px;transition:padding-right .25s;}
body.with-sidebar-chat.chat-collapsed{padding-right:42px;}

#fchat-rail{position:fixed;top:0;right:0;bottom:0;width:42px;background:#0d0018;border-left:1px solid rgba(139,92,246,.25);z-index:7999;display:none;flex-direction:column;align-items:center;padding:14px 0;gap:10px;cursor:pointer;}
body.chat-collapsed #fchat-rail{display:flex;}
#fchat-rail-ico{font-size:20px;color:#a78bfa;}
#fchat-rail-lbl{writing-mode:vertical-rl;transform:rotate(180deg);font-size:11px;color:rgba(255,255,255,.4);font-weight:600;letter-spacing:.5px;text-transform:uppercase;}
#fchat-rail-badge{background:#fb7185;color:#fff;font-size:9px;font-weight:700;padding:1px 5px;border-radius:8px;min-width:18px;text-align:center;}

#fchat-window{position:fixed;top:0;right:0;bottom:0;width:340px;background:#0d0018;border-left:1px solid rgba(139,92,246,.25);display:flex;flex-direction:column;z-index:7998;overflow:hidden;}
body.chat-collapsed #fchat-window{display:none;}

.fchat-head{padding:11px 13px;border-bottom:1px solid rgba(255,255,255,.06);display:flex;align-items:center;gap:8px;background:linear-gradient(180deg,rgba(139,92,246,.08),transparent);flex-shrink:0;}
.fchat-avatar{width:30px;height:30px;border-radius:7px;background:linear-gradient(135deg,#7c3aed,#4f46e5);display:flex;align-items:center;justify-content:center;font-size:13px;color:#fff;font-weight:800;flex-shrink:0;}
.fchat-title-wrap{flex:1;min-width:0;}
.fchat-title{font-size:13px;font-weight:700;color:#fff;}
.fchat-sub{font-size:10px;color:rgba(255,255,255,.4);display:flex;align-items:center;gap:5px;}
.fchat-dot{width:6px;height:6px;border-radius:50%;background:#34d399;box-shadow:0 0 4px rgba(52,211,153,.5);}
.fchat-step{font-size:9px;font-weight:600;padding:2px 6px;border-radius:4px;background:rgba(139,92,246,.18);color:#c4b5fd;border:1px solid rgba(139,92,246,.3);}
.fchat-actions{display:flex;gap:4px;flex-shrink:0;}
.fchat-act{width:24px;height:24px;border-radius:5px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.5);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;}
.fchat-act:hover{background:rgba(139,92,246,.2);color:#fff;}

.fchat-pipe{padding:7px 13px;border-bottom:1px solid rgba(255,255,255,.05);display:flex;align-items:center;gap:4px;font-size:9px;color:rgba(255,255,255,.3);background:rgba(255,255,255,.02);flex-shrink:0;flex-wrap:wrap;}
.fchat-pipe-step{display:flex;align-items:center;gap:4px;padding:2px 6px;border-radius:4px;cursor:pointer;}
.fchat-pipe-step:hover{background:rgba(255,255,255,.05);}
.fchat-pipe-step.ac{color:#c4b5fd;background:rgba(139,92,246,.12);border:1px solid rgba(139,92,246,.25);}
.fchat-pipe-step.dn{color:#34d399;}
.fchat-pipe-arr{color:rgba(255,255,255,.15);}

.fchat-body{flex:1;overflow-y:auto;padding:11px 13px;display:flex;flex-direction:column;gap:8px;min-height:0;}
.fchat-body::-webkit-scrollbar{width:3px;}
.fchat-body::-webkit-scrollbar-thumb{background:rgba(139,92,246,.3);border-radius:2px;}

.fchat-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:rgba(255,255,255,.4);padding:14px;}
.fchat-empty-ico{font-size:32px;margin-bottom:7px;opacity:.5;}
.fchat-empty-t{font-size:12px;color:#c4b5fd;margin-bottom:4px;font-weight:600;line-height:1.4;}
.fchat-empty-s{font-size:11px;color:rgba(255,255,255,.35);line-height:1.5;}

.fchat-qa{display:flex;flex-direction:column;gap:5px;margin-top:12px;width:100%;}
.fchat-qa-lbl{font-size:9px;color:rgba(255,255,255,.25);text-transform:uppercase;letter-spacing:.4px;margin-bottom:3px;text-align:center;}
.fchat-qa-btn{background:rgba(139,92,246,.08);border:1px solid rgba(139,92,246,.2);border-radius:7px;padding:7px 10px;font-size:11px;color:#a78bfa;cursor:pointer;text-align:left;font-family:inherit;}
.fchat-qa-btn:hover{background:rgba(139,92,246,.2);color:#c4b5fd;}

.fchat-msg{animation:fchat-fadein .2s;max-width:88%;}
@keyframes fchat-fadein{from{opacity:0;transform:translateY(4px);}to{opacity:1;transform:translateY(0);}}
.fchat-msg-u{align-self:flex-end;background:rgba(139,92,246,.18);border:1px solid rgba(139,92,246,.3);border-radius:10px 10px 3px 10px;padding:8px 11px;font-size:12px;color:#e8e8e8;line-height:1.45;}
.fchat-msg-a{align-self:flex-start;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:10px 10px 10px 3px;padding:8px 11px;font-size:12px;color:#c4b5fd;line-height:1.55;}
.fchat-msg-step{font-size:9px;color:rgba(255,255,255,.3);margin-bottom:4px;display:flex;align-items:center;gap:5px;}
.fchat-msg-step-tag{padding:1px 5px;border-radius:3px;background:rgba(139,92,246,.15);color:#a78bfa;font-weight:600;}
.fchat-typing{align-self:flex-start;display:flex;gap:4px;align-items:center;padding:8px 12px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:10px;width:fit-content;}
.fchat-td{width:5px;height:5px;border-radius:50%;background:#8b5cf6;animation:fchat-bn 1.2s infinite;}
.fchat-td:nth-child(2){animation-delay:.2s;}
.fchat-td:nth-child(3){animation-delay:.4s;}
@keyframes fchat-bn{0%,80%,100%{transform:scale(.7);opacity:.4;}40%{transform:scale(1);opacity:1;}}

.fchat-foot{padding:9px 11px;border-top:1px solid rgba(255,255,255,.05);background:rgba(0,0,0,.2);flex-shrink:0;}
.fchat-foot-row{display:flex;gap:6px;align-items:flex-end;}
.fchat-input{flex:1;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:8px;padding:8px 11px;font-size:12px;color:#fff;outline:none;resize:none;font-family:inherit;min-height:36px;max-height:100px;line-height:1.4;}
.fchat-input::placeholder{color:rgba(255,255,255,.25);}
.fchat-input:focus{border-color:rgba(139,92,246,.4);}
.fchat-send{width:36px;height:36px;border-radius:8px;background:rgba(139,92,246,.25);border:1px solid rgba(139,92,246,.5);color:#a78bfa;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.fchat-send:hover{background:rgba(139,92,246,.4);}
.fchat-clear{font-size:10px;color:rgba(255,255,255,.3);cursor:pointer;text-align:center;padding:6px;background:transparent;border:none;font-family:inherit;width:100%;margin-top:4px;}
.fchat-clear:hover{color:#f87171;}

@media (max-width:900px){
  body.with-sidebar-chat{padding-right:0;padding-bottom:340px;}
  body.with-sidebar-chat.chat-collapsed{padding-right:0;padding-bottom:42px;}
  #fchat-window{top:auto;width:auto;left:0;right:0;bottom:0;height:340px;border-left:none;border-top:1px solid rgba(139,92,246,.25);}
  #fchat-rail{top:auto;left:0;right:0;bottom:0;width:auto;height:42px;border-left:none;border-top:1px solid rgba(139,92,246,.25);flex-direction:row;padding:0 16px;justify-content:center;gap:14px;}
  #fchat-rail-lbl{writing-mode:horizontal-tb;transform:none;}
}
