.chatbox-container{position:fixed;bottom:0;right:0;z-index:9999;pointer-events:none}@media (max-width:768px){.chatbox-container{display:none!important}}.chatbox{position:fixed;bottom:0;width:320px;height:420px;background-color:var(--white-bg-color);border-radius:.75rem .75rem 0 0;box-shadow:0 0 16px rgba(0,0,0,.12),0 4px 24px rgba(0,0,0,.08);border:1px solid rgba(0,0,0,.08);border-bottom:none;display:flex;flex-direction:column;transition:height .2s ease,opacity .2s ease;pointer-events:auto;z-index:100}.chatbox.focused{z-index:101;box-shadow:0 0 20px rgba(0,0,0,.15),0 8px 32px rgba(0,0,0,.1)}.chatbox.minimized{height:48px}.chatbox-header{padding:.75rem 1rem;background:linear-gradient(135deg,#404040 0,#000 100%);color:#fff;border-radius:.75rem .75rem 0 0;display:flex;justify-content:space-between;align-items:center;cursor:pointer;flex-shrink:0;user-select:none;transition:background .15s ease}.chatbox-header:hover{background:linear-gradient(135deg,#ffa545 0,var(--highlight-color) 100%)}.chatbox-header-info{display:flex;align-items:center;gap:.625rem;flex:1;min-width:0}.chatbox-avatar{width:24px;height:24px;border-radius:50%;object-fit:cover;flex-shrink:0;background-color:rgba(255,255,255,.2)}.chatbox-title{font-weight:600;font-size:.9em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chatbox-header-actions{display:flex;gap:.25rem;flex-shrink:0}.chatbox-btn{width:28px;height:28px;border-radius:50%;border:none;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background-color .15s ease;padding:0;background:0 0;box-shadow:none}.chatbox-btn:hover{box-shadow:none;background:0 0}.chatbox-btn:active{box-shadow:none;background:0 0}.chatbox-btn svg{display:block;transition:opacity .15s ease}.chatbox-body{flex:1;overflow:hidden;display:flex;flex-direction:column;background-color:var(--white-bg-color)}.chatbox.minimized .chatbox-body{display:none}.chatbox-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:0}.chatbox-messages::-webkit-scrollbar{width:6px}.chatbox-messages::-webkit-scrollbar-track{background:0 0}.chatbox-messages::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.2);border-radius:3px}.chatbox-messages::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.3)}.chatbox-message{display:flex;gap:.5rem;align-items:flex-end;max-width:85%;margin-bottom:.75rem}.chatbox-message-own{align-self:flex-end;flex-direction:row-reverse}.chatbox-message-other{align-self:flex-start}.chatbox-message-avatar{width:28px;height:28px;border-radius:50%;object-fit:cover;flex-shrink:0}.chatbox-message-avatar-spacer{width:28px;height:28px;flex-shrink:0}.chatbox-message-content{display:flex;flex-direction:column;gap:.25rem}.chatbox-message-text{padding:.625rem .875rem;border-radius:1.125rem;font-size:.9375rem;line-height:1.4;word-wrap:break-word;white-space:pre-wrap}.chatbox-message-other .chatbox-message-text{background-color:#f0f2f5;color:var(--primary-text-color);border-bottom-left-radius:.25rem}.chatbox-message-own .chatbox-message-text{background-color:var(--primary-color);color:#fff;border-bottom-right-radius:.25rem}.chatbox-message-time{font-size:.75rem;color:var(--primary-light-text-color);padding:0 .5rem}.chatbox-message-own .chatbox-message-time{text-align:right}.chatbox-message.cluster-middle,.chatbox-message.cluster-start{margin-bottom:.125rem}.chatbox-message.cluster-end,.chatbox-message.cluster-single{margin-bottom:.75rem}.chatbox-message-other.cluster-start .chatbox-message-text{border-bottom-left-radius:.25rem;border-top-left-radius:1.125rem}.chatbox-message-other.cluster-middle .chatbox-message-text{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.chatbox-message-other.cluster-end .chatbox-message-text{border-bottom-left-radius:.25rem;border-top-left-radius:.25rem}.chatbox-message-other.cluster-single .chatbox-message-text{border-bottom-left-radius:.25rem;border-top-left-radius:1.125rem}.chatbox-message-own.cluster-start .chatbox-message-text{border-bottom-right-radius:.25rem;border-top-right-radius:1.125rem}.chatbox-message-own.cluster-middle .chatbox-message-text{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.chatbox-message-own.cluster-end .chatbox-message-text{border-bottom-right-radius:.25rem;border-top-right-radius:.25rem}.chatbox-message-own.cluster-single .chatbox-message-text{border-bottom-right-radius:.25rem;border-top-right-radius:1.125rem}.chatbox-empty,.chatbox-loading{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem 1rem;gap:.75rem;color:var(--primary-light-text-color);height:100%}.chatbox-loading .loading-spinner{width:24px;height:24px;border:2px solid rgba(0,0,0,.1);border-top:2px solid var(--primary-color);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.chatbox-empty p,.chatbox-loading span{font-size:.875rem;font-weight:500;margin:0}.chatbox-empty span{font-size:.8125rem;color:var(--primary-lightest-text-color)}.chatbox-footer{padding:.75rem;background-color:var(--white-bg-color);border-top:1px solid rgba(0,0,0,.08);display:flex;gap:.5rem;align-items:flex-end;flex-shrink:0}.chatbox.minimized .chatbox-footer{display:none}.chatbox-input{flex:1;border:1px solid rgba(0,0,0,.12);border-radius:1.25rem;padding:.5rem .875rem;font-size:.9375rem;font-family:inherit;resize:none;max-height:100px;min-height:36px;line-height:1.4;transition:border-color .15s ease;outline:0}.chatbox-input:focus{border-color:var(--primary-color);box-shadow:0 0 0 2px rgba(var(--primary-color-rgb,5,111,240),.1)}.chatbox-input::placeholder{color:var(--primary-light-text-color)}.chatbox-send-btn{width:36px;height:36px;border-radius:50%;border:none;background-color:var(--dark-color);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .15s ease;flex-shrink:0;padding:0}.chatbox-send-btn:hover{background-color:var(--dark-color-hover);transform:scale(1.05)}.chatbox-send-btn:active{transform:scale(.95)}.chatbox-send-btn svg{flex-shrink:0;left:-1px;position:relative;top:1px}@media (prefers-reduced-motion:reduce){.chatbox,.chatbox-btn,.chatbox-btn svg,.chatbox-header,.chatbox-input,.chatbox-send-btn{transition:none;animation:none}.chatbox-loading .loading-spinner{animation:none;border-top-color:var(--primary-color)}}.chatbox-btn:focus-visible,.chatbox-send-btn:focus-visible{outline:2px solid rgba(255,255,255,.5);outline-offset:2px}@media (max-width:1024px) and (min-width:769px){.chatbox{width:300px;height:420px}}@media (min-width:1600px){.chatbox{width:340px;height:480px}}