.chat-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:50}.chat-modal{background:white;border-radius:8px;box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);width:100%;max-width:448px;height:600px;display:flex;flex-direction:column}.chat-header{padding:16px;justify-content:space-between}.chat-header,.chat-user-info{display:flex;align-items:center}.chat-user-info{gap:12px}.chat-user-avatar{background:#d1d5db;display:flex;align-items:center;justify-content:center}.chat-user-avatar,.chat-user-avatar img{width:40px;height:40px;border-radius:50%}.chat-user-avatar img{object-fit:cover}.chat-user-details h3{font-size:16px;font-weight:600;color:#111827;margin:0}.chat-user-details p{font-size:14px;color:#6b7280;margin:0}.chat-close-btn{color:#9ca3af;background:none;border:none;cursor:pointer;padding:4px;transition:color .2s ease}.chat-close-btn:hover{color:#6b7280}.chat-messages{flex:1 1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:16px}.chat-message{display:flex;max-width:80%}.chat-message.sent{align-self:flex-end}.chat-message.received{align-self:flex-start}.chat-message-content{padding:12px 16px;border-radius:18px;font-size:14px;line-height:1.4;word-wrap:break-word}.chat-message.sent .chat-message-content{background:#3b82f6;color:white;border-bottom-right-radius:4px}.chat-message.received .chat-message-content{background:#f3f4f6;color:#111827;border-bottom-left-radius:4px}.chat-message-time{font-size:12px;margin-top:4px;opacity:.7}.chat-message.sent .chat-message-time{text-align:right;color:#3b82f6}.chat-message.received .chat-message-time{color:#6b7280}.chat-empty,.chat-loading{text-align:center;color:#6b7280;padding:16px}.chat-input-form{padding:16px;border-top:1px solid #e5e7eb}.chat-input-container{display:flex;gap:8px}.chat-input{flex:1 1;padding:12px;border:1px solid #d1d5db;border-radius:8px;font-size:14px;outline:none;transition:border-color .2s ease}.chat-input:focus{border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1)}.chat-input:disabled{background-color:#f9fafb;cursor:not-allowed}.chat-send-btn{padding:12px 16px;background:#3b82f6;color:white;border:none;border-radius:8px;font-size:14px;font-weight:500;cursor:pointer;display:flex;align-items:center;gap:8px;transition:background-color .2s ease}.chat-send-btn:hover:not(:disabled){background:#2563eb}.chat-send-btn:disabled{opacity:.5;cursor:not-allowed}.chat-send-btn svg{width:16px;height:16px}.chat-messages::-webkit-scrollbar{width:6px}.chat-messages::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.chat-messages::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:3px}.chat-messages::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.chat-requests-container{padding:16px}.chat-requests-title{font-size:20px;font-weight:600;color:#111827;margin-bottom:16px}.chat-requests-list{display:flex;flex-direction:column;gap:16px}.chat-request-item{background:white;border-radius:8px;border:1px solid #e5e7eb;padding:16px;box-shadow:0 1px 3px rgba(0,0,0,.1)}.chat-request-header{display:flex;align-items:center;gap:12px;margin-bottom:12px}.chat-request-avatar{width:48px;height:48px;background:#d1d5db;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.chat-request-avatar img{width:48px;height:48px;border-radius:50%;object-fit:cover}.chat-request-user-info{flex:1 1;min-width:0}.chat-request-name{font-size:16px;font-weight:600;color:#111827;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chat-request-university{font-size:14px;color:#6b7280;margin:4px 0 0}.chat-request-date{font-size:12px;color:#9ca3af;margin:4px 0 0}.chat-request-actions{display:flex;gap:8px;margin-top:12px}.chat-request-accept-btn{flex:1 1;background:#10b981;color:white;border:none;padding:12px 16px;border-radius:8px;font-size:14px;font-weight:500;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background-color .2s ease}.chat-request-accept-btn:hover{background:#059669}.chat-request-reject-btn{flex:1 1;background:#ef4444;color:white;border:none;padding:12px 16px;border-radius:8px;font-size:14px;font-weight:500;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background-color .2s ease}.chat-request-reject-btn:hover{background:#dc2626}.chat-requests-loading{padding:16px;text-align:center;color:#6b7280}.chat-requests-empty{padding:32px 16px;text-align:center}.chat-requests-empty-icon{font-size:48px;color:#9ca3af;margin-bottom:16px}.chat-requests-empty-title{font-size:18px;font-weight:600;color:#111827;margin-bottom:8px}.chat-requests-empty-message{color:#6b7280;line-height:1.5}.chat-page{min-height:100vh;background:#f9fafb;margin-top:90px}.chat-container{max-width:1024px;margin:0 auto;padding:16px}.chat-card{background:white;border-radius:8px;box-shadow:0 1px 3px rgba(0,0,0,.1)}.chat-header{padding:24px;border-bottom:1px solid #e5e7eb}.chat-title{font-size:24px;font-weight:700;color:#111827;margin:0 0 4px}.chat-subtitle{color:#6b7280;margin:0}.chat-tabs{display:flex;border-bottom:1px solid #e5e7eb}.chat-tab{flex:1 1;padding:12px 24px;font-size:14px;font-weight:500;background:none;cursor:pointer;transition:all .2s ease;border:none;border-bottom:2px solid transparent}.chat-tab.active{color:#3b82f6;border-bottom-color:#3b82f6}.chat-tab:not(.active){color:#6b7280}.chat-tab:hover:not(.active){color:#374151}.chat-content{padding:24px}.chat-empty{text-align:center;padding:48px 24px}.chat-empty-icon{font-size:48px;color:#9ca3af;margin-bottom:16px}.chat-empty-title{font-size:18px;font-weight:600;color:#111827;margin-bottom:8px}.chat-empty-message{color:#6b7280;margin-bottom:24px;line-height:1.5}.chat-browse-btn{background:#3b82f6;color:white;border:none;padding:12px 24px;border-radius:8px;font-size:16px;font-weight:600;cursor:pointer;transition:background-color .2s ease}.chat-browse-btn:hover{background:#2563eb}.chat-list{display:flex;flex-direction:column;gap:16px}.chat-item{display:flex;align-items:center;gap:16px;padding:16px;border:1px solid #e5e7eb;border-radius:8px;cursor:pointer;transition:all .2s ease}.chat-item:hover{background-color:#f9fafb;border-color:#d1d5db}.chat-item-avatar{background:#d1d5db;display:flex;align-items:center;justify-content:center;flex-shrink:0}.chat-item-avatar,.chat-item-avatar img{width:48px;height:48px;border-radius:50%}.chat-item-avatar img{object-fit:cover}.chat-item-info{flex:1 1;min-width:0}.chat-item-name{font-size:16px;font-weight:600;color:#111827;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.chat-item-subtitle{font-size:14px;color:#6b7280;margin:4px 0 0}.chat-item-right{display:flex;align-items:center;gap:8px;flex-shrink:0}.chat-item-icon{color:#9ca3af;flex-shrink:0}.chat-item-badge{background:#e76f51;color:white;border-radius:50%;min-width:20px;height:20px;font-size:12px;font-weight:700;line-height:1;padding:2px;box-shadow:0 2px 4px rgba(0,0,0,.2)}.chat-item-badge,.chat-loading{display:flex;align-items:center;justify-content:center}.chat-loading{min-height:200px}.chat-loading-spinner{width:48px;height:48px;border:4px solid #f3f4f6;border-top-color:#3b82f6;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.chat-loading-text{margin-top:16px;color:#6b7280}