/* Avatar AI ScanMAP */
#ai-avatar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 9999;
}

#ai-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

#ai-avatar:hover img {
  transform: scale(1.1);
}

#ai-chat {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  z-index: 9999;
  font-family: sans-serif;
}

#ai-chat.hidden {
  display: none;
}

#ai-output {
  font-size: 15px;
  margin-bottom: 10px;
  min-height: 60px;
}
