.chat-sidebar{display:flex;flex-direction:column;height:100%;background:var(--bg-page);position:relative}.chat-sidebar .chat-header{display:flex;align-items:center;justify-content:space-between;padding:2px 12px;background:var(--bg-subtle);border-bottom:1px solid var(--border-default);flex-shrink:0}.chat-sidebar .chat-header .chat-header-title{font-size:.875rem;font-weight:600;color:var(--text-primary)}.chat-sidebar .chat-header .chat-header-actions{display:flex;align-items:center;gap:4px}.chat-sidebar .chat-header .chat-header-actions .chat-participant-count{display:flex;align-items:center;gap:4px;padding:4px 8px;border:none;background:rgba(0,0,0,0);font-size:.75rem;color:var(--text-secondary);cursor:pointer;border-radius:4px;transition:background .15s,color .15s}.chat-sidebar .chat-header .chat-header-actions .chat-participant-count svg{font-size:.8125rem}.chat-sidebar .chat-header .chat-header-actions .chat-participant-count span{font-weight:500}.chat-sidebar .chat-header .chat-header-actions .chat-participant-count:hover{background:var(--border-default);color:var(--text-primary)}.chat-sidebar .chat-header .chat-header-actions .chat-menu-wrapper>button,.chat-sidebar .chat-header .chat-header-actions>button:not(.chat-participant-count){display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;background:rgba(0,0,0,0);cursor:pointer;color:var(--text-secondary);border-radius:4px;transition:background .15s,color .15s}.chat-sidebar .chat-header .chat-header-actions .chat-menu-wrapper>button:hover,.chat-sidebar .chat-header .chat-header-actions>button:not(.chat-participant-count):hover{background:var(--border-default);color:var(--text-primary)}.chat-sidebar .chat-header .chat-menu-wrapper{position:relative}.chat-sidebar .chat-header .chat-menu{position:absolute;top:100%;right:0;min-width:150px;background:var(--bg-page);border:1px solid var(--border-default);border-radius:3px;z-index:10;overflow:hidden}.chat-sidebar .chat-header .chat-menu button{display:flex;align-items:center;gap:8px;width:100%;padding:10px 14px;border:none;background:rgba(0,0,0,0);cursor:pointer;font-size:.8125rem;color:var(--text-primary);text-align:left;transition:background .15s}.chat-sidebar .chat-header .chat-menu button svg{width:14px;color:var(--text-muted)}.chat-sidebar .chat-header .chat-menu button:hover{background:var(--bg-subtle)}.chat-sidebar .chat-header .chat-menu button:disabled{color:var(--border-strong);cursor:not-allowed}.chat-sidebar .chat-header .chat-menu button:disabled svg{color:var(--border-strong)}.chat-sidebar .chat-header .chat-menu button:disabled:hover{background:rgba(0,0,0,0)}.chat-sidebar .chat-messages{flex:1;overflow-y:auto;padding:8px 12px;display:flex;flex-direction:column;gap:4px}.chat-sidebar .chat-messages::-webkit-scrollbar{width:4px}.chat-sidebar .chat-messages::-webkit-scrollbar-thumb{background:var(--border-strong);border-radius:2px}.chat-sidebar .chat-messages .chat-system{text-align:center;font-size:.75rem;color:var(--text-muted);padding:4px 0}.chat-sidebar .chat-messages .chat-message{display:flex;align-items:baseline;gap:6px;padding:3px 0;line-height:1.4;word-break:break-word}.chat-sidebar .chat-messages .chat-message .chat-message-time{font-size:.625rem;color:var(--text-muted);flex-shrink:0}.chat-sidebar .chat-messages .chat-message .chat-message-name{font-size:.8125em;font-weight:600;color:var(--text-secondary);flex-shrink:0;max-width:80px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.chat-sidebar .chat-messages .chat-message .chat-message-content{font-size:1em;color:var(--text-primary)}.chat-sidebar .chat-input-area{flex-shrink:0;border-top:1px solid var(--border-default);padding:8px 10px;background:var(--bg-elevated)}.chat-sidebar .chat-input-area .chat-input-row{display:flex;gap:6px}.chat-sidebar .chat-input-area .chat-input-row input{flex:1;padding:8px 10px;border:1px solid var(--border-default);border-radius:4px;font-size:.8125rem;outline:none;transition:border-color .15s}.chat-sidebar .chat-input-area .chat-input-row input:focus{border-color:#f7931a}.chat-sidebar .chat-input-area .chat-input-row input:disabled{background:var(--bg-subtle);color:var(--text-muted)}.chat-sidebar .chat-input-area .chat-input-row button{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:none;background:var(--brand-orange);color:#fff;border-radius:4px;cursor:pointer;flex-shrink:0;transition:background .15s}.chat-sidebar .chat-input-area .chat-input-row button:hover{background:var(--brand-orange-hover)}.chat-sidebar .chat-input-area .chat-input-row button:disabled{background:var(--border-strong);cursor:not-allowed}.chat-sidebar .chat-input-area .chat-login-notice{text-align:center;font-size:.8125rem;color:var(--text-muted);padding:2px 0}.chat-sidebar .chat-input-area .chat-login-notice a{color:var(--brand-orange);font-weight:600;text-decoration:underline}.chat-sidebar .chat-input-area .chat-login-notice a:hover{color:var(--brand-orange-hover)}.chat-sidebar .chat-participants-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:var(--overlay-color);z-index:11}.chat-sidebar .chat-participants-dialog{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:calc(100% - 24px);max-height:60%;background:var(--bg-page);border-radius:8px;box-shadow:0 8px 24px var(--shadow-color);overflow:hidden;z-index:12}.chat-sidebar .chat-participants-dialog .chat-participants-header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border-bottom:1px solid var(--border-default);background:var(--bg-subtle)}.chat-sidebar .chat-participants-dialog .chat-participants-header h3{font-size:.875rem;font-weight:600;color:var(--text-primary);margin:0}.chat-sidebar .chat-participants-dialog .chat-participants-header button{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:none;background:rgba(0,0,0,0);cursor:pointer;font-size:1.25rem;color:var(--text-secondary);border-radius:4px}.chat-sidebar .chat-participants-dialog .chat-participants-header button:hover{background:var(--border-default);color:var(--text-primary)}.chat-sidebar .chat-participants-dialog .chat-participants-list{list-style:none;margin:0;padding:0;overflow-y:auto;max-height:calc(100% - 52px)}.chat-sidebar .chat-participants-dialog .chat-participants-list li{display:flex;align-items:center;gap:8px;padding:10px 16px;font-size:.8125rem;color:var(--text-primary);border-bottom:1px solid var(--bg-subtle)}.chat-sidebar .chat-participants-dialog .chat-participants-list li:last-child{border-bottom:none}.chat-sidebar .chat-participants-dialog .chat-participants-list li .chat-participant-icon{color:var(--text-muted);font-size:.75rem}.chat-sidebar .chat-participants-dialog .chat-participants-list .chat-participants-empty{justify-content:center;color:var(--text-muted);padding:24px 16px}.chat-sidebar .chat-participants-dialog .chat-participants-list .chat-participants-guest{color:var(--text-muted);font-style:italic}
/*# sourceMappingURL=93dc94f0a01e04fa.css.map*/