/* Floating Chat Button */
#chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Chat Widget */
#chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 330px;
  height: 450px;
  background: #0b141a;
  border-radius: 15px;
  display: none;
  flex-direction: column;
  color: #fff;
  z-index: 9999;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Header */
#chat-header {
  background: #202c33;
  padding: 12px;
  font-weight: bold;
}

#chat-status {
  font-size: 11px;
  opacity: 0.7;
}

/* Messages */
#chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
}

#chat-messages div {
  margin-bottom: 8px;
}

/* Typing */
#chat-typing {
  font-size: 12px;
  padding-left: 12px;
  display: none;
  opacity: 0.7;
}

/* Input */
#chat-input {
  border: none;
  padding: 12px;
  outline: none;
  font-size: 14px;
}

#chat-input-area {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
}

#file-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

