
/* ===== CHATTER ===== */
/* ===== CHATTER ===== */
.chatter-wrap{display:flex;flex-direction:column;height:100%;max-width:820px;width:100%;margin:0 auto;padding:0;}
.chatter-feed{flex:1;overflow-y:auto;padding:24px 28px;display:flex;flex-direction:column;gap:0;}
.chatter-msg{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--border);}
.chatter-msg:last-child{border-bottom:none;}
.chatter-msg-avatar{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0;margin-top:2px;}
.chatter-msg-body{flex:1;min-width:0;}
.chatter-msg-header{display:flex;align-items:baseline;gap:8px;margin-bottom:4px;}
.chatter-msg-name{font-size:13px;font-weight:600;color:var(--text);}
.chatter-msg-time{font-size:11px;color:var(--muted);}
.chatter-msg-text{font-size:13.5px;color:var(--text);line-height:1.6;word-break:break-word;}
.chatter-msg-text .mention{color:var(--amber);font-weight:600;}
.chatter-msg-attachments{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;}
.chatter-attach-chip{display:flex;align-items:center;gap:6px;background:var(--surface2);border:1px solid var(--border);border-radius:6px;padding:5px 10px;font-size:12px;color:var(--text);cursor:pointer;}
.chatter-attach-chip:hover{border-color:var(--amber-dim);color:var(--amber);}
.chatter-composer{border-bottom:2px solid var(--border);padding:16px 28px 20px;background:var(--surface);flex-shrink:0;}
.chatter-composer-top{display:flex;gap:12px;align-items:flex-start;}
.chatter-avatar-self{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;flex-shrink:0;background:var(--amber);color:#fff;}
.chatter-input-wrap{flex:1;position:relative;}
.chatter-input{min-height:60px;max-height:160px;overflow-y:auto;border:1.5px solid var(--border);border-radius:8px;padding:10px 14px;font-size:13.5px;color:var(--text);background:var(--surface2);outline:none;font-family:'DM Sans',sans-serif;line-height:1.5;word-break:break-word;}
.chatter-input:focus{border-color:var(--amber-dim);background:var(--surface);}
.chatter-input:empty:before{content:attr(data-placeholder);color:var(--muted);pointer-events:none;}
.chatter-mention-dropdown{position:fixed;background:var(--surface);border:1.5px solid var(--border);border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,0.35);z-index:9999;min-width:220px;overflow:hidden;}
.chatter-mention-item{display:flex;align-items:center;gap:10px;padding:8px 14px;cursor:pointer;font-size:13px;color:var(--text);}
.chatter-mention-item:hover,.chatter-mention-item.sel{background:var(--amber-glow);color:var(--amber);}
.chatter-composer-actions{display:flex;align-items:center;gap:10px;margin-top:10px;padding-left:46px;}
.chatter-attach-btn{font-size:18px;cursor:pointer;padding:4px 6px;border-radius:6px;transition:background .15s;}
.chatter-attach-btn:hover{background:var(--surface2);}
.chatter-attachments-preview{display:flex;flex-wrap:wrap;gap:6px;}
.chatter-preview-chip{display:flex;align-items:center;gap:5px;background:var(--surface2);border:1px solid var(--border);border-radius:5px;padding:3px 8px;font-size:11px;color:var(--muted);}
.chatter-preview-chip button{background:none;border:none;cursor:pointer;color:var(--muted);font-size:12px;padding:0;line-height:1;}
.chatter-preview-chip button:hover{color:var(--red);}
.chatter-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;flex:1;color:var(--muted);gap:12px;padding:60px 0;}
.chatter-empty-icon{font-size:40px;opacity:.4;}
.chatter-date-divider{text-align:center;font-size:11px;color:var(--muted);margin:12px 0 4px;letter-spacing:.5px;text-transform:uppercase;}


/* ===== NOTIFICATIONS ===== */
/* ===== NOTIFICATIONS ===== */
.notif-bell-btn{background:none;border:none;font-size:18px;cursor:pointer;padding:4px 8px;border-radius:6px;position:relative;transition:background .15s;}
.notif-bell-btn:hover{background:var(--surface2);}
.notif-bell-badge{position:absolute;top:0;right:0;background:var(--red);color:#fff;font-size:9px;font-weight:700;border-radius:10px;padding:1px 5px;min-width:16px;text-align:center;font-family:'JetBrains Mono',monospace;}
.notif-panel{position:absolute;top:calc(100% + 8px);right:0;width:320px;background:var(--surface);border:1.5px solid var(--border);border-radius:10px;box-shadow:0 8px 32px rgba(0,0,0,0.12);z-index:500;overflow:hidden;}
.notif-panel-header{display:flex;align-items:center;padding:12px 16px;font-size:13px;font-weight:600;border-bottom:1px solid var(--border);color:var(--text);}
.notif-list{max-height:360px;overflow-y:auto;}
.notif-item{display:flex;gap:10px;padding:12px 16px;border-bottom:1px solid var(--border);cursor:pointer;transition:background .12s;opacity:0.6;}
.notif-item:hover{background:var(--surface2);opacity:1;}
.notif-item.unread{background:var(--amber-glow);border-left:3px solid var(--amber);opacity:1;font-weight:500;}
.notif-item-avatar{width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;flex-shrink:0;}
.notif-item-body{flex:1;min-width:0;}
.notif-item-title{font-size:12.5px;color:var(--text);line-height:1.4;word-break:break-word;}
.notif-item-title strong{color:var(--amber);}
.notif-item-time{font-size:11px;color:var(--muted);margin-top:2px;}
.notif-empty{padding:32px 16px;text-align:center;color:var(--muted);font-size:13px;}

/* ===== CHATTER NOTIFY MULTI-SELECT ===== */
.chatter-notify-wrap{position:relative;}
.chatter-notify-btn{display:flex;align-items:center;gap:5px;background:var(--surface2);border:1.5px solid var(--border);border-radius:6px;padding:5px 11px;font-size:12px;color:var(--muted);cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .15s;white-space:nowrap;}
.chatter-notify-btn:hover,.chatter-notify-btn.has-selections{border-color:var(--amber-dim);color:var(--amber);background:var(--amber-glow);}
.chatter-notify-drop{position:fixed;min-width:230px;background:var(--surface);border:1.5px solid var(--border);border-radius:10px;box-shadow:0 6px 28px rgba(0,0,0,0.22);z-index:9999;overflow:hidden;}
.chatter-notify-search-wrap{padding:8px 10px;border-bottom:1px solid var(--border);}
.chatter-notify-search{width:100%;border:1.5px solid var(--border);border-radius:6px;padding:5px 10px;font-size:12px;background:var(--surface2);color:var(--text);outline:none;font-family:'DM Sans',sans-serif;box-sizing:border-box;}
.chatter-notify-search:focus{border-color:var(--amber-dim);}
.chatter-notify-list{max-height:200px;overflow-y:auto;}
.chatter-notify-item{display:flex;align-items:center;gap:9px;padding:7px 12px;cursor:pointer;font-size:13px;color:var(--text);transition:background .12s;}
.chatter-notify-item:hover{background:var(--surface2);}
.chatter-notify-item.selected{background:var(--amber-glow);}
.chatter-notify-avatar{width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:9px;font-weight:700;flex-shrink:0;}
.chatter-notify-name{flex:1;}
.chatter-notify-check{font-size:13px;color:var(--amber);font-weight:700;width:16px;text-align:center;}
.chatter-notify-chips{display:flex;flex-wrap:wrap;gap:6px;padding:6px 0 2px 46px;align-items:center;}
.chatter-notify-chip{display:flex;align-items:center;gap:5px;background:var(--amber-glow);border:1px solid var(--amber-dim);border-radius:20px;padding:3px 8px 3px 4px;font-size:12px;color:var(--amber);font-weight:500;}
.chatter-notify-chip-av{width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:8px;font-weight:700;flex-shrink:0;}
.chatter-notify-chip button{background:none;border:none;cursor:pointer;color:var(--amber);font-size:11px;padding:0;line-height:1;margin-left:2px;opacity:.7;}
.chatter-notify-chip button:hover{opacity:1;}

/* ===== CHATTER REPLIES ===== */
/* ===== CHATTER REPLIES ===== */
.chatter-reply-bar{display:flex;align-items:center;gap:8px;padding:6px 10px;background:var(--amber-glow);border-radius:6px;margin-bottom:8px;border-left:3px solid var(--amber);}
.chatter-replies{margin-top:8px;padding-left:16px;border-left:2px solid var(--border);display:flex;flex-direction:column;gap:0;}
.chatter-reply-msg{display:flex;gap:10px;padding:8px 0;}
.chatter-reply-avatar{width:26px;height:26px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;flex-shrink:0;}
.chatter-msg-actions{display:flex;gap:8px;margin-top:5px;opacity:0;transition:opacity .15s;}
.chatter-msg:hover .chatter-msg-actions{opacity:1;}
.chatter-reply-msg:hover .chatter-msg-actions{opacity:1;}
.chatter-action-btn{background:none;border:1px solid var(--border);border-radius:5px;padding:2px 9px;font-size:11px;color:var(--muted);cursor:pointer;font-family:'DM Sans',sans-serif;transition:all .12s;}
.chatter-action-btn:hover{border-color:var(--amber-dim);color:var(--amber);background:var(--amber-glow);}
.chatter-reply-count{font-size:11px;color:var(--amber);cursor:pointer;margin-top:4px;display:inline-flex;align-items:center;gap:4px;}
.chatter-reply-count:hover{text-decoration:underline;}


