*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}:root{--color-green: #00a884;--color-green-dark: #008069;--color-green-light: #d9fdd3;--color-teal-header: #202c33;--color-bg-app: #111b21;--color-bg-sidebar: #111b21;--color-bg-chat: #0b1418;--color-bg-msg-panel: #efeae2;--color-bubble-in: #ffffff;--color-bubble-out: #d9fdd3;--color-text-primary: #e9edef;--color-text-secondary: #8696a0;--color-text-dark: #111b21;--color-divider: #222d34;--color-hover: #2a3942;--color-input-bg: #2a3942;--color-banner-connecting: #f0b429;--color-banner-open: #00a884;--color-banner-closed: #ef4444;--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;--radius-bubble: 7.5px;--radius-sm: 4px;--sidebar-width: 360px;--header-height: 60px;--input-height: 62px;--banner-height: 32px}html,body,#root{height:100%;font-family:var(--font-base);background:var(--color-bg-app);color:var(--color-text-primary);font-size:14px;line-height:1.4;-webkit-font-smoothing:antialiased}.app{display:flex;flex-direction:column;height:100%}.app__body{display:flex;flex:1;overflow:hidden}.connection-banner{display:flex;align-items:center;justify-content:center;gap:8px;height:var(--banner-height);font-size:12px;font-weight:500;transition:background .3s;flex-shrink:0}.connection-banner--connecting{background:var(--color-banner-connecting);color:#111}.connection-banner--open{background:var(--color-banner-open);color:#fff}.connection-banner--closed{background:var(--color-banner-closed);color:#fff}.connection-banner__dot{width:8px;height:8px;border-radius:50%;background:currentColor;opacity:.9}.connection-banner--connecting .connection-banner__dot{animation:pulse 1.2s ease-in-out infinite}@keyframes pulse{0%,to{opacity:.4;transform:scale(.85)}50%{opacity:1;transform:scale(1)}}.qr-screen{display:flex;flex:1;align-items:center;justify-content:center;background:var(--color-bg-app)}.qr-screen__card{position:relative;display:flex;flex-direction:column;align-items:center;gap:24px;padding:40px 48px;background:var(--color-bg-sidebar);border:1px solid var(--color-divider);border-radius:12px;text-align:center;max-width:380px;width:100%}.qr-screen__actions{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;width:100%;padding-top:4px}.qr-screen__action{border:1px solid var(--color-divider);border-radius:999px;background:var(--color-input-bg);color:var(--color-text-secondary);font:inherit;font-size:12px;font-weight:600;padding:7px 12px;cursor:pointer;transition:background .15s,color .15s,border-color .15s}.qr-screen__action--primary{background:#00a88424;border-color:#00a88473;color:var(--color-green)}.qr-screen__action:hover:not(:disabled){background:var(--color-hover);border-color:var(--color-green-dark);color:var(--color-text-primary)}.qr-screen__action:disabled{cursor:not-allowed;opacity:.65}.qr-screen__logo{width:58px;height:58px;border-radius:16px;object-fit:cover}.qr-screen__title{font-size:22px;font-weight:300;color:var(--color-text-primary)}.qr-screen__subtitle{font-size:14px;color:var(--color-text-secondary);line-height:1.6}.qr-screen__image{width:220px;height:220px;border-radius:8px;border:4px solid #fff}.qr-screen__placeholder{width:220px;height:220px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;background:var(--color-input-bg);border-radius:8px;color:var(--color-text-secondary);font-size:13px}.qr-screen__spinner{width:32px;height:32px;border:3px solid var(--color-divider);border-top-color:var(--color-green);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.qr-screen__raw{font-family:Courier New,monospace;font-size:10px;word-break:break-all;color:var(--color-text-primary);background:var(--color-input-bg);padding:12px;border-radius:6px;max-width:280px;max-height:120px;overflow:auto}.sidebar{width:var(--sidebar-width);min-width:var(--sidebar-width);display:flex;flex-direction:column;background:var(--color-bg-sidebar);border-right:1px solid var(--color-divider);overflow:hidden}.sidebar__header{display:flex;align-items:center;justify-content:space-between;padding:10px 16px;background:var(--color-teal-header);height:var(--header-height);flex-shrink:0}.sidebar__header-title{font-size:20px;font-weight:500;color:var(--color-text-primary)}.sidebar__search{padding:8px 12px;background:var(--color-bg-sidebar);flex-shrink:0}.sidebar__search-input{width:100%;padding:8px 12px 8px 36px;background:var(--color-input-bg);border:none;border-radius:8px;color:var(--color-text-primary);font-size:14px;outline:none}.sidebar__search-input::placeholder{color:var(--color-text-secondary)}.sidebar__list{flex:1;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--color-divider) transparent}.sidebar__empty{display:flex;flex-direction:column;align-items:center;gap:12px;padding:40px 20px;color:var(--color-text-secondary);text-align:center;font-size:13px}.chat-item{display:flex;align-items:center;gap:12px;padding:12px 16px;cursor:pointer;border-bottom:1px solid var(--color-divider);transition:background .15s}.chat-item:hover,.chat-item--active{background:var(--color-hover)}.chat-item__avatar{width:48px;height:48px;border-radius:50%;background:var(--color-green-dark);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px;font-weight:600;color:#fff;text-transform:uppercase}.chat-item__content{flex:1;min-width:0}.chat-item__top{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:3px}.chat-item__name{font-size:15px;font-weight:500;color:var(--color-text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1;min-width:0}.chat-item__time{font-size:11px;color:var(--color-text-secondary);flex-shrink:0;margin-left:8px}.chat-item__preview{font-size:13px;color:var(--color-text-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chat-window{flex:1;display:flex;flex-direction:column;background:var(--color-bg-chat);overflow:hidden;position:relative}.chat-window__bg{position:absolute;top:0;right:0;bottom:0;left:0;opacity:.04;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none;z-index:0}.chat-window__header{display:flex;align-items:center;gap:12px;padding:10px 16px;background:var(--color-teal-header);height:var(--header-height);flex-shrink:0;z-index:1}.chat-window__header-avatar{width:40px;height:40px;border-radius:50%;background:var(--color-green-dark);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:600;color:#fff;text-transform:uppercase;flex-shrink:0}.chat-window__header-info{flex:1;min-width:0}.chat-window__header-name{font-size:16px;font-weight:500;color:var(--color-text-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chat-window__header-sub{font-size:12px;color:var(--color-text-secondary);margin-top:1px}.chat-window__messages{flex:1;overflow-y:auto;padding:16px 80px;display:flex;flex-direction:column;gap:4px;scrollbar-width:thin;scrollbar-color:var(--color-divider) transparent;z-index:1}.bubble-wrapper{display:flex;width:100%}.bubble-wrapper--out{justify-content:flex-end}.bubble-wrapper--in{justify-content:flex-start}.bubble{max-width:min(65%,760px);padding:6px 10px 4px;border-radius:var(--radius-bubble);position:relative;overflow-wrap:break-word;line-height:1.5;font-size:14.2px;text-align:left}.bubble--in{background:var(--color-bubble-in);color:var(--color-text-dark);border-top-left-radius:2px}.bubble--out{background:var(--color-bubble-out);color:var(--color-text-dark);border-top-right-radius:2px}.bubble__sender{display:block;font-size:12px;font-weight:600;color:var(--color-green-dark);margin-bottom:2px;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.bubble__text{display:block;text-align:left}.bubble__meta{display:flex;align-items:center;justify-content:flex-end;gap:4px;margin-top:2px;margin-left:48px}.bubble__time{font-size:11px;color:#667781}.message-input{display:flex;align-items:flex-end;gap:10px;padding:8px 16px;background:var(--color-teal-header);min-height:var(--input-height);flex-shrink:0;z-index:1}.message-input__textarea{flex:1;padding:10px 14px;background:var(--color-input-bg);border:none;border-radius:8px;color:var(--color-text-primary);font-size:15px;font-family:var(--font-base);resize:none;outline:none;max-height:120px;overflow-y:auto;line-height:1.5;scrollbar-width:thin;scrollbar-color:var(--color-divider) transparent}.message-input__textarea::placeholder{color:var(--color-text-secondary)}.message-input__send{width:44px;height:44px;border-radius:50%;background:var(--color-green);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:background .15s,transform .1s;color:#fff}.message-input__send:hover{background:var(--color-green-dark)}.message-input__send:active{transform:scale(.92)}.message-input__send:disabled{background:var(--color-input-bg);cursor:default}.chat-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;color:var(--color-text-secondary);text-align:center}.chat-empty__icon{width:64px;height:64px;fill:var(--color-text-secondary);opacity:.4}.chat-empty__title{font-size:24px;font-weight:300;color:var(--color-text-primary)}.chat-empty__sub{font-size:14px;max-width:300px;line-height:1.6}.date-separator{display:flex;align-items:center;justify-content:center;margin:12px 0 8px}.date-separator__label{background:#1f2c34;color:var(--color-text-secondary);font-size:12px;padding:4px 10px;border-radius:6px}.history-loading{display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 0;font-size:12px;color:var(--color-text-secondary)}.history-loading__spinner{display:inline-block;width:14px;height:14px;border:2px solid var(--color-divider);border-top-color:var(--color-green);border-radius:50%;animation:spin .7s linear infinite;flex-shrink:0}.history-error{text-align:center;font-size:12px;color:var(--color-text-secondary);padding:8px 16px;background:#ef444414;border-radius:6px;margin:4px 0}.history-load-more{display:flex;justify-content:center;padding:8px 0 4px}.history-load-more__btn{display:inline-flex;align-items:center;gap:6px;padding:5px 14px;border-radius:20px;border:1px solid var(--color-divider);background:var(--color-input-bg);color:var(--color-text-secondary);font-size:12px;font-family:var(--font-base);cursor:pointer;transition:background .15s,color .15s}.history-load-more__btn:hover:not(:disabled){background:var(--color-hover);color:var(--color-text-primary)}.history-load-more__btn:disabled{opacity:.6;cursor:default}.history-load-more__spinner{display:inline-block;width:12px;height:12px;border:2px solid var(--color-divider);border-top-color:var(--color-green);border-radius:50%;animation:spin .7s linear infinite;flex-shrink:0}::-webkit-scrollbar{width:5px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:var(--color-divider);border-radius:4px}.sidebar__settings-btn{position:relative;width:36px;height:36px;border-radius:50%;border:none;background:transparent;color:var(--color-text-secondary);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s,color .15s;flex-shrink:0}.sidebar__settings-btn svg{width:22px;height:22px}.sidebar__settings-btn:hover{background:var(--color-hover);color:var(--color-text-primary)}.sidebar__settings-btn--active{color:var(--color-green)}.sidebar__settings-btn-dot{position:absolute;top:6px;right:6px;width:7px;height:7px;border-radius:50%;background:var(--color-green);border:2px solid var(--color-teal-header)}.chat-manual-btn{display:flex;align-items:center;gap:6px;padding:5px 12px;border-radius:20px;border:1px solid var(--color-divider);background:var(--color-input-bg);color:var(--color-text-secondary);font-size:12px;font-weight:500;cursor:pointer;transition:background .15s,color .15s,border-color .15s;flex-shrink:0}.chat-manual-btn:hover:not(:disabled){background:var(--color-hover);color:var(--color-text-primary)}.chat-manual-btn:disabled{opacity:.5;cursor:default}.chat-manual-btn--manual{background:#ef444426;border-color:#ef444466;color:#ef4444}.chat-manual-btn--manual:hover:not(:disabled){background:#ef444440}.chat-manual-btn__icon{width:14px;height:14px;flex-shrink:0}.settings-page{flex:1;display:flex;flex-direction:column;background:var(--color-bg-app);overflow:hidden}.settings-header{display:flex;align-items:center;gap:12px;padding:0 16px;height:var(--header-height);background:var(--color-teal-header);border-bottom:1px solid var(--color-divider);flex-shrink:0}.settings-header__back{display:flex;align-items:center;gap:6px;padding:6px 12px;border-radius:6px;border:none;background:transparent;color:var(--color-text-secondary);font-size:14px;font-family:var(--font-base);cursor:pointer;transition:background .15s,color .15s;flex-shrink:0}.settings-header__back svg{width:18px;height:18px}.settings-header__back:hover{background:var(--color-hover);color:var(--color-text-primary)}.settings-header__title{font-size:18px;font-weight:500;color:var(--color-text-primary)}.settings-header__spacer{flex:1}.settings-content{flex:1;overflow-y:auto;padding:24px;scrollbar-width:thin;scrollbar-color:var(--color-divider) transparent;max-width:720px;width:100%;margin:0 auto}.settings-loading{display:flex;flex-direction:column;align-items:center;gap:16px;padding:60px 0;color:var(--color-text-secondary);font-size:14px}.settings-loading__spinner{width:32px;height:32px;border:3px solid var(--color-divider);border-top-color:var(--color-green);border-radius:50%;animation:spin .8s linear infinite}.settings-section{background:var(--color-bg-sidebar);border:1px solid var(--color-divider);border-radius:10px;padding:20px;margin-bottom:16px}.settings-section--highlight{border-color:var(--color-green-dark);background:#00a8840f}.settings-section__row{display:flex;align-items:center;justify-content:space-between;gap:16px}.settings-section__row--mb{margin-bottom:16px}.settings-section__text{flex:1;min-width:0}.settings-section__title{font-size:15px;font-weight:600;color:var(--color-text-primary);margin-bottom:4px}.settings-section__desc{font-size:13px;color:var(--color-text-secondary);line-height:1.5}.toggle{position:relative;width:52px;height:28px;border-radius:14px;border:none;background:var(--color-divider);cursor:pointer;transition:background .2s;flex-shrink:0;padding:0}.toggle--on{background:var(--color-green)}.toggle__thumb{position:absolute;top:3px;left:3px;width:22px;height:22px;border-radius:50%;background:#fff;transition:transform .2s;box-shadow:0 1px 3px #0000004d}.toggle--on .toggle__thumb{transform:translate(24px)}.settings-provider-badge{display:inline-flex;align-items:center;gap:10px;padding:6px 14px;border-radius:6px;background:var(--color-input-bg);border:1px solid var(--color-divider);margin-top:8px}.settings-provider-badge__label{font-size:14px;font-weight:500;color:var(--color-text-primary)}.settings-provider-badge__note{font-size:12px;color:var(--color-text-secondary)}.settings-field{margin-top:10px}.settings-label{display:block;font-size:12px;font-weight:500;color:var(--color-text-secondary);text-transform:uppercase;letter-spacing:.04em;margin-bottom:6px}.settings-select,.settings-input,.settings-textarea{width:100%;padding:10px 12px;background:var(--color-input-bg);border:1px solid var(--color-divider);border-radius:8px;color:var(--color-text-primary);font-size:14px;font-family:var(--font-base);outline:none;transition:border-color .15s;-webkit-appearance:none;-moz-appearance:none;appearance:none}.settings-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238696a0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;background-size:20px;padding-right:36px;cursor:pointer}.settings-select:focus,.settings-input:focus,.settings-textarea:focus{border-color:var(--color-green)}.settings-select:disabled{opacity:.5;cursor:not-allowed}.settings-input::placeholder,.settings-textarea::placeholder{color:var(--color-text-secondary)}.settings-textarea{resize:vertical;min-height:100px;line-height:1.5}.settings-field__hint{font-size:12px;color:var(--color-text-secondary);margin-top:6px;line-height:1.4}.settings-field__hint--warning{color:#f0b429}.settings-empty-rules{font-size:13px;color:var(--color-text-secondary);padding:8px 0;font-style:italic}.settings-rules{display:flex;flex-direction:column;gap:12px}.settings-rule{background:var(--color-bg-app);border:1px solid var(--color-divider);border-radius:8px;padding:14px}.settings-rule__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}.settings-rule__num{font-size:12px;font-weight:600;color:var(--color-text-secondary);text-transform:uppercase;letter-spacing:.04em}.settings-rule__delete{width:28px;height:28px;border-radius:6px;border:none;background:transparent;color:var(--color-text-secondary);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s,color .15s;flex-shrink:0}.settings-rule__delete svg{width:16px;height:16px}.settings-rule__delete:hover{background:#ef444426;color:#ef4444}.settings-rule__fields{display:flex;flex-direction:column;gap:10px}.settings-btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:9px 18px;border-radius:8px;border:none;font-size:14px;font-weight:500;font-family:var(--font-base);cursor:pointer;transition:background .15s,opacity .15s;flex-shrink:0}.settings-btn--primary{background:var(--color-green);color:#fff}.settings-btn--primary:hover:not(:disabled){background:var(--color-green-dark)}.settings-btn--primary:disabled{opacity:.6;cursor:default}.settings-btn--secondary{background:var(--color-input-bg);color:var(--color-text-primary);border:1px solid var(--color-divider)}.settings-btn--secondary:hover{background:var(--color-hover)}.settings-footer{padding:24px 0 8px;display:flex;flex-direction:column;align-items:flex-end;gap:10px}.settings-footer__actions{display:flex;gap:10px}.settings-footer__success{font-size:13px;color:var(--color-green);font-weight:500}.settings-footer__error{font-size:13px;color:#ef4444;font-weight:500}.login-page{min-height:100vh;display:grid;place-items:center;position:relative;overflow:hidden;background:#06121d;color:#e9edef;padding:24px}.login-page:before{content:"";position:absolute;top:-24px;right:-24px;bottom:-24px;left:-24px;background:linear-gradient(120deg,#030a126b,#02141a80),url(/assets/login-background.png) center / cover no-repeat;filter:blur(6px);transform:scale(1.04)}.login-page:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:radial-gradient(circle at 50% 45%,rgba(0,212,184,.16),transparent 34%),linear-gradient(180deg,#02080e29,#02080ec2)}.login-card{position:relative;z-index:1;width:min(420px,100%);background:#07121ec7;border:1px solid rgba(91,239,219,.18);border-radius:24px;padding:30px;box-shadow:0 28px 90px #0000007a;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.login-card__brand{display:flex;justify-content:center;margin-bottom:18px}.login-card__brand img{display:block;width:180px;max-width:70%;height:auto;border-radius:18px}.login-card__title{margin:0 0 8px;font-size:1.6rem}.login-card__subtitle{margin:0 0 24px;color:#aebac1;line-height:1.45}.login-field{display:grid;gap:8px;margin-bottom:16px;color:#d1d7db;font-weight:600}.login-field input{border:1px solid #3b4a54;border-radius:12px;background:#111b21;color:#e9edef;padding:12px 14px;font:inherit;outline:none}.login-field input:focus{border-color:#00a884;box-shadow:0 0 0 3px #00a8842e}.login-button{width:100%;border:0;border-radius:999px;background:#00a884;color:#071b16;font-weight:800;padding:12px 16px;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease,background .15s ease}.login-button:hover:not(:disabled){background:#25d9b5;box-shadow:0 12px 28px #00a88447;transform:translateY(-1px)}.login-button:disabled{opacity:.65;cursor:not-allowed}.login-error{color:#ffb4a9;background:#f25c541f;border:1px solid rgba(242,92,84,.28);border-radius:12px;padding:10px 12px}.login-footer{position:absolute;z-index:1;left:24px;right:24px;bottom:18px;color:#e9edefb8;font-size:12px;text-align:center;letter-spacing:.01em}.message-select-hitbox{position:relative;display:inline-flex;align-items:center;justify-content:flex-start;gap:8px;border:0;background:transparent;padding:0;color:inherit;font:inherit;cursor:default;max-width:min(65%,760px);width:fit-content}.bubble-wrapper--out .message-select-hitbox{flex-direction:row-reverse}.message-select-hitbox .bubble{max-width:none;width:fit-content;min-width:96px}.message-select-hitbox--active{cursor:pointer}.message-select-hitbox--selected .bubble{outline:2px solid #00a884;box-shadow:0 0 0 4px #00a88429}.message-checkbox{display:inline-grid;place-items:center;width:22px;height:22px;border-radius:999px;border:2px solid #8696a0;background:#111b21;color:#111b21;font-size:14px;font-weight:800;flex:0 0 auto}.message-checkbox--checked{border-color:#00a884;background:#00a884;color:#071b16}.chat-action-btn,.chat-delete-btn{border:1px solid rgba(255,255,255,.14);border-radius:999px;background:#111b21e6;color:#e9edef;padding:8px 12px;font:inherit;font-weight:700;cursor:pointer}.chat-action-btn:hover,.chat-delete-btn:hover:not(:disabled){border-color:#00a884}.chat-delete-btn{background:#7f1d1d;border-color:#ef4444;color:#fff7ed}.chat-delete-btn:disabled{opacity:.65;cursor:not-allowed}.chat-delete-status{position:relative;z-index:1;padding:8px 16px;background:#202c33f5;color:#d1d7db;border-bottom:1px solid rgba(255,255,255,.08);font-size:.9rem}
