@import '~@fortawesome/fontawesome-free/css/all.min.css';

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transition: all 0.3s ease;
}

#chatbot-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#chatbot-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#chatbot-menu {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#chatbot-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#chatbot-menu li {
  padding: 10px;
  cursor: pointer;
}

#chatbot-menu li:hover {
  background-color: #f1f1f1;
}

#chatbot-header {
  background-color: #007bff;
  color: white;
  padding: 10px;
  cursor: pointer;
  text-align: center;
}

#chatbot-body {
  flex-direction: column;
  padding: 10px;
}

#messages {
  height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
}

#user-input {
  width: calc(100% - 60px);
  padding: 5px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {

  #chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 300px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  
  #chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 0px;
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   
  }
  
  #chatbot-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  
  #chatbot-menu {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #chatbot-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #chatbot-menu li {
    padding: 10px;
    cursor: pointer;
  }
  
  #chatbot-menu li:hover {
    background-color: #f1f1f1;
  }
  
  #chatbot-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    cursor: pointer;
    text-align: center;
  }
  
  #chatbot-body {
    flex-direction: column;
    padding: 10px;
  }
  
  #messages {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
  }
  
  #user-input {
    width: calc(100% - 60px);
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }

}