*{box-sizing:border-box;margin:0;padding:0}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-items:center;background:linear-gradient(135deg,#667eea,#764ba2);display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;justify-content:center;min-height:100vh}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}#root{height:100vh;padding:20px}#root,.App{align-items:center;display:flex;justify-content:center;width:100%}.App{height:90vh;max-width:1200px}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:#f1f1f1;border-radius:10px}::-webkit-scrollbar-thumb{background:#888;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#555}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes slideIn{0%{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.login-container{align-items:center;animation:fadeIn .5s ease-in;display:flex;height:100%;justify-content:center;width:100%}.login-card{animation:fadeIn .6s ease-in;background:#fff;border-radius:20px;box-shadow:0 20px 60px #0000004d;max-width:450px;padding:50px;width:100%}.login-header{margin-bottom:40px;text-align:center}.login-header h1{color:#667eea;font-size:2.5rem;font-weight:700;margin-bottom:10px}.login-header p{color:#666;font-size:1rem}.login-form{margin-bottom:30px}.form-group{margin-bottom:25px}.form-group label{color:#333;display:block;font-size:1rem;font-weight:600;margin-bottom:10px}.form-group input{border:2px solid #e0e0e0;border-radius:10px;font-size:1rem;outline:none;padding:15px;transition:all .3s ease;width:100%}.form-group input:focus{border-color:#667eea;box-shadow:0 0 0 3px #667eea1a}.error-message{color:#e74c3c;display:block;font-size:.85rem;margin-top:8px}.login-button{background:linear-gradient(135deg,#667eea,#764ba2);border:none;border-radius:10px;box-shadow:0 4px 15px #667eea66;color:#fff;cursor:pointer;font-size:1.1rem;font-weight:600;padding:15px;transition:all .3s ease;width:100%}.login-button:hover{box-shadow:0 6px 20px #667eea99;transform:translateY(-2px)}.login-button:active{transform:translateY(0)}.login-footer{border-top:1px solid #e0e0e0;padding-top:20px;text-align:center}.login-footer p{color:#999;font-size:.9rem}@media (max-width:768px){.login-card{margin:20px;padding:30px}.login-header h1{font-size:2rem}}.chat-room{animation:fadeIn .5s ease-in;background:#fff;border-radius:20px;box-shadow:0 20px 60px #0000004d;display:flex;flex-direction:column;height:100%;overflow:hidden;width:100%}.chat-header{background:linear-gradient(135deg,#667eea,#764ba2);box-shadow:0 2px 10px #0000001a;color:#fff;justify-content:space-between;padding:20px 30px}.chat-header,.header-left{align-items:center;display:flex}.header-left{gap:15px}.header-left h2{font-size:1.5rem;font-weight:700;margin:0}.connection-status{background:#fff3;border-radius:20px;font-size:.85rem;padding:5px 12px}.connection-status.connected{color:#4ade80}.connection-status.disconnected{color:#f87171}.header-right{align-items:center;display:flex;gap:15px}.username-display{font-size:1rem;font-weight:600}.logout-button{background:#fff3;border:2px solid #fff;border-radius:8px;color:#fff;cursor:pointer;font-weight:600;padding:8px 20px;transition:all .3s ease}.logout-button:hover{background:#fff;color:#667eea}.chat-body{display:flex;flex:1 1;overflow:hidden}.chat-main{display:flex;flex:1 1;flex-direction:column;min-width:0}@media (max-width:768px){.chat-room{border-radius:0;height:100vh}.chat-header{align-items:flex-start;flex-direction:column;gap:15px}.header-left,.header-right{justify-content:space-between;width:100%}.chat-body{flex-direction:column}}.message-list{background:#f8f9fa;flex:1 1;gap:15px;overflow-y:auto;padding:20px}.empty-state,.message-list{display:flex;flex-direction:column}.empty-state{align-items:center;color:#999;gap:10px;height:100%;justify-content:center;text-align:center}.empty-state p:first-child{color:#667eea;font-size:1.5rem;font-weight:600}.system-message{animation:fadeIn .3s ease-in;background:#667eea1a;border-radius:20px;color:#667eea;font-size:.9rem;margin:10px auto;max-width:80%;padding:8px 15px;text-align:center}.message{animation:slideIn .3s ease-out;display:flex;flex-direction:column;max-width:70%}.own-message{align-items:flex-end;align-self:flex-end}.other-message{align-items:flex-start;align-self:flex-start}.message-username{color:#667eea;font-size:.85rem;font-weight:600;margin-bottom:5px;padding:0 10px}.message-content{display:flex;flex-direction:column;gap:5px}.message-text{word-wrap:break-word;border-radius:18px;font-size:.95rem;line-height:1.4;padding:12px 16px}.own-message .message-text{background:linear-gradient(135deg,#667eea,#764ba2);border-bottom-right-radius:4px;color:#fff}.other-message .message-text{background:#fff;border-bottom-left-radius:4px;box-shadow:0 1px 3px #0000001a;color:#333}.message-time{color:#999;font-size:.75rem;padding:0 10px}.typing-indicator{align-items:center;animation:fadeIn .3s ease-in;background:#fff;border-radius:20px;box-shadow:0 1px 3px #0000001a;display:flex;gap:10px;max-width:200px;padding:10px 15px}.typing-text{color:#667eea;font-size:.85rem;font-weight:500}.typing-dots{display:flex;gap:4px}.typing-dots span{animation:pulse 1.4s infinite;background:#667eea;border-radius:50%;height:6px;width:6px}.typing-dots span:nth-child(2){animation-delay:.2s}.typing-dots span:nth-child(3){animation-delay:.4s}@media (max-width:768px){.message{max-width:85%}.message-list{padding:15px}}.message-input{background:#fff;border-top:1px solid #e0e0e0;display:flex;gap:10px;padding:20px}.message-input input{border:2px solid #e0e0e0;border-radius:25px;flex:1 1;font-size:1rem;outline:none;padding:15px 20px;transition:all .3s ease}.message-input input:focus{border-color:#667eea;box-shadow:0 0 0 3px #667eea1a}.message-input button{align-items:center;background:linear-gradient(135deg,#667eea,#764ba2);border:none;border-radius:25px;box-shadow:0 4px 15px #667eea66;color:#fff;cursor:pointer;display:flex;font-size:1rem;font-weight:600;gap:8px;padding:15px 30px;transition:all .3s ease}.message-input button:hover:not(:disabled){box-shadow:0 6px 20px #667eea99;transform:translateY(-2px)}.message-input button:active:not(:disabled){transform:translateY(0)}.message-input button:disabled{box-shadow:none;cursor:not-allowed;opacity:.5}.send-icon{font-size:1.2rem}@media (max-width:768px){.message-input{padding:15px}.message-input button span:first-child{display:none}.message-input button{padding:15px 20px}}.users-list{animation:slideIn .3s ease-out;background:#f8f9fa;border-left:1px solid #e0e0e0;display:flex;flex-direction:column;width:280px}.users-header{align-items:center;background:#fff;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;padding:20px}.users-header h3{color:#333;font-size:1.1rem;margin:0}.users-count{background:linear-gradient(135deg,#667eea,#764ba2);border-radius:15px;color:#fff;font-size:.85rem;font-weight:600;padding:4px 12px}.users-container{display:flex;flex:1 1;flex-direction:column;gap:10px;overflow-y:auto;padding:15px}.no-users{color:#999;font-size:.9rem;padding:20px;text-align:center}.user-item{align-items:center;animation:fadeIn .3s ease-in;background:#fff;border-radius:12px;box-shadow:0 1px 3px #0000001a;display:flex;gap:12px;padding:12px;transition:all .3s ease}.user-item:hover{box-shadow:0 2px 8px #00000026;transform:translateX(5px)}.user-item.current-user{background:linear-gradient(135deg,#667eea1a,#764ba21a);border:2px solid #667eea}.user-avatar{align-items:center;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:50%;color:#fff;display:flex;font-size:1.1rem;font-weight:700;height:40px;justify-content:center;width:40px}.user-info{display:flex;flex:1 1;flex-direction:column;gap:4px;min-width:0}.user-name{color:#333;font-size:.95rem;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.user-status{color:#4ade80;font-size:.8rem}@media (max-width:768px){.users-list{border-left:none;border-top:1px solid #e0e0e0;max-height:200px;width:100%}.users-container{flex-direction:row;flex-wrap:wrap;overflow-x:auto}.user-item{flex:0 0 auto;min-width:150px}}
/*# sourceMappingURL=main.834b6e25.css.map*/