body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;margin:0}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}*{box-sizing:border-box;margin:0;padding:0}body{background-color:#f5f5f5;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.app-container{align-items:center;background-position:50%;background-repeat:no-repeat;background-size:cover;display:flex;justify-content:center;min-height:100vh;position:relative}.auth-button{background:#007bff;border:none;border-radius:5px;color:#fff;cursor:pointer;font-size:14px;left:20px;padding:10px 20px;position:absolute;top:20px;transition:all .3s ease;z-index:1000}.auth-button:hover{background:#0056b3}.profile-content{background:#f8f9fa;border:1px solid #e9ecef;border-radius:10px;margin-top:20px;padding:20px}.settings-icon{align-items:center;background:#fffc;border-radius:50%;cursor:pointer;display:flex;font-size:24px;height:50px;justify-content:center;position:absolute;right:20px;top:20px;transition:all .3s ease;width:50px;z-index:1000}.settings-icon:hover{background:#fff;transform:rotate(90deg)}.settings-modal{align-items:center;background:#00000080;display:flex;height:100%;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:2000}.settings-content{background:#fff;border-radius:10px;max-width:90%;padding:30px;width:400px}.settings-content h3{color:#333;margin-bottom:20px}.settings-content label{color:#555;display:block;font-weight:700;margin-bottom:10px}.settings-content input{border:1px solid #ddd;border-radius:5px;font-size:14px;margin-bottom:20px;padding:10px;width:100%}.settings-buttons{display:flex;gap:10px;justify-content:flex-end}.settings-buttons button{border:none;border-radius:5px;cursor:pointer;font-size:14px;padding:10px 20px;transition:all .3s ease}.settings-buttons button:first-child{background:#007bff;color:#fff}.settings-buttons button:first-child:hover{background:#0056b3}.settings-buttons button:last-child{background:#6c757d;color:#fff}.settings-buttons button:last-child:hover{background:#545b62}.bot-selection-container{background:#fffffff2;border-radius:15px;box-shadow:0 10px 30px #0000001a;max-width:600px;padding:40px;text-align:center;width:90%}.bot-selection-container h2{color:#333;font-size:28px;font-weight:600;margin-bottom:30px}.bot-options{display:flex;flex-wrap:wrap;gap:30px;justify-content:center}.bot-option{background:#fff;border:2px solid #e0e0e0;border-radius:15px;cursor:pointer;min-width:200px;padding:30px 20px;text-align:center;transition:all .3s ease}.bot-option:hover{border-color:#007bff;box-shadow:0 10px 25px #007bff26;transform:translateY(-5px)}.bot-option img{height:60px;margin-bottom:15px;object-fit:contain;width:60px}.bot-option h3{color:#333;font-size:18px;font-weight:500}.chat-view-container{border-radius:15px;box-shadow:0 10px 30px #0000001a;display:flex;flex-direction:column;max-width:800px;width:100%}.main-header{background:linear-gradient(135deg,#667eea,#764ba2);border-bottom:1px solid #fff3;border-radius:15px 15px 0 0;color:#fff;font-size:14px;padding:10px 20px;text-align:center}.chat-app{background:#fffffff2;border-radius:0 0 15px 15px;box-shadow:none;display:flex;flex-direction:column;height:90vh;overflow:hidden;width:100%}.chat-header{align-items:center;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;display:flex;gap:15px;padding:20px}.back-button{background:#fff3;border:none;border-radius:50%;color:#fff;cursor:pointer;font-size:20px;height:40px;transition:all .3s ease;width:40px}.back-button:hover{background:#ffffff4d;transform:scale(1.1)}.header-logo{background:#fff;border-radius:8px;height:40px;object-fit:contain;padding:5px;width:40px}.chat-header h1{font-size:24px;font-weight:600}.chat-messages{display:flex;flex:1 1;flex-direction:column;gap:15px;overflow-y:auto;padding:20px}.message-row{display:flex;width:100%}.user-row{justify-content:flex-end}.bot-row{justify-content:flex-start}.message-bubble{word-wrap:break-word;border-radius:20px;line-height:1.4;max-width:70%;padding:15px 20px}.user-message{background:linear-gradient(135deg,#667eea,#764ba2);border-bottom-right-radius:5px;color:#fff}.bot-message{background:#f8f9fa;border:1px solid #e9ecef;border-bottom-left-radius:5px;color:#333}.error-message{background:#f8d7da;border-color:#f5c6cb;color:#721c24}.message-bubble p{margin:0}.loading-indicator{background:#007bff0d;border-radius:10px;color:#666;font-style:italic;margin:0 20px;padding:15px;text-align:center}.chat-input-form{align-items:center;background:#f8f9fa;border-top:1px solid #e9ecef;display:flex;gap:15px;padding:20px}.chat-input-form textarea{border:1px solid #ddd;border-radius:25px;flex:1 1;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;font-size:16px;line-height:1.4;max-height:150px;outline:none;overflow-y:hidden;padding:15px 20px;resize:none;transition:all .3s ease}.chat-input-form textarea:focus{border-color:#007bff;box-shadow:0 0 0 3px #007bff1a}.input-wrapper{align-items:center;display:flex;flex:1 1;position:relative}.chat-input-form textarea{padding-left:20px;width:100%}.chat-input-form button{background:linear-gradient(135deg,#667eea,#764ba2);border:none;border-radius:25px;color:#fff;cursor:pointer;font-size:16px;font-weight:600;min-width:80px;padding:15px 30px;transition:all .3s ease}.chat-input-form button:hover:not(:disabled){box-shadow:0 5px 15px #007bff4d;transform:translateY(-2px)}.chat-input-form button:disabled{cursor:not-allowed;opacity:.6}.file-upload-container,.upload-icon-btn{align-items:center;display:flex}.upload-icon-btn{background:none;border:none;border-radius:50%;color:#555;cursor:pointer;font-size:24px;height:40px;justify-content:center;transition:all .3s ease;width:40px}.upload-icon-btn:hover{background:#f0f0f0}.file-preview-compact{align-items:center;background:#e9f5ff;border:1px solid #007bff;border-radius:20px;display:flex;font-size:14px;margin-right:10px;max-width:200px;padding:5px 10px}.file-preview-compact span{max-width:150px;overflow:hidden;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}.remove-file-btn-compact{background:none;border:none;color:#888;cursor:pointer;font-size:18px;line-height:1;padding:0 0 0 5px}.remove-file-btn-compact:hover{color:#000}.message-file-attachment{background:#f1f1f1;border-radius:10px;color:#555;display:inline-block;font-size:13px;margin-top:8px;padding:5px 10px}.drag-drop-overlay{align-items:center;background:#007bff33;color:#007bff;display:flex;font-size:24px;font-weight:700;height:100%;justify-content:center;left:0;pointer-events:none;position:fixed;top:0;width:100%;z-index:3000}.app-container.drag-over-active{outline:2px dashed #007bff;outline-offset:-10px}@media (max-width:768px){.app-container{padding:10px}.chat-app{height:95vh;max-width:100%}.bot-options{align-items:center;flex-direction:column}.bot-option{max-width:300px;width:100%}.message-bubble{max-width:85%}.chat-header h1{font-size:20px}.settings-content{padding:20px;width:90%}.chat-input-form{flex-wrap:wrap}.input-wrapper{order:-1;width:100%}}.chat-messages::-webkit-scrollbar{width:6px}.chat-messages::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}.chat-messages::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:10px}.chat-messages::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.bot-message h1,.bot-message h2,.bot-message h3{color:#333;margin:10px 0 5px}.bot-message ol,.bot-message ul{margin:10px 0;padding-left:20px}.bot-message li{margin:5px 0}.bot-message code{background:#e9ecef;border-radius:4px;font-family:Courier New,monospace;padding:2px 6px}.bot-message pre{background:#f8f9fa;border-radius:8px;margin:10px 0;overflow-x:auto;padding:15px}.bot-message blockquote{border-left:4px solid #007bff;color:#666;font-style:italic;margin:10px 0;padding-left:15px}.bot-message img{border-radius:8px;display:block;height:auto;margin-bottom:8px;margin-top:8px;max-width:100%}.chat-input-form input[type=file]{background:none;border:none;color:#333;cursor:pointer;flex:0 1;font-size:14px;padding:0;width:auto}
/*# sourceMappingURL=main.5e697ac6.css.map*/