.chatBot {
  /* background-color: #212121; */
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; Ensure full viewport height */
}

.chat-navbar {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  justify-content: space-between;
 background-color:  #F08415;
  padding: 8px 12px;
  border-bottom: 1px solid #444;
}

.chat-navbar .left{
  display: flex;
  align-items: center;

}
.chat-navbar .left img{
  height: 50px;
  width: 50px;
  border-radius: 50%;
  /* border: 2px solid #39FF14; */
}

.menu-icon{
  font-size: 20px;
  cursor: pointer;
  margin-right: 10px;
}

/* Style for the help button */
.help-button {
  position: fixed;
  bottom: 20px;
  right: 50px;
  background-color: #39FF14;
  color: #212121;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.help-button:hover {
  background-color: #5CFF59;
}

.chat-wrapper {
  width: 330px;
  max-width: 90vw;
  height: 450px;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: fixed;
  bottom: 20px;
  right: 20px;
  
  z-index: 100000;
}


.help-button video{
  height: 92px;
  width: 140px;
  border-radius: 50%;
}

.menu-icon i{
  font-size: 23px;
}


@media (max-width: 600px) {
  .chat-wrapper {
      width: 90vw;
      height: 60vh;
      bottom: 173px;
      right: 5vw;
      border-radius: 15px;
  }

  .chat-input input {
      width: 70%;
  }

  .chat-input button {
      width: 25%;
  }

  .chat-navbar .username {
      font-size: 16px;
  }

  .help-button {
      bottom: 20px;
      right: 5vw;
      width: 50px;
      height: 50px;
      font-size: 20px;
  }

  .help-button video {
      height: 70px;
      width: 100px;
  }
}


.chat-box {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-box::-webkit-scrollbar {
  display: none;
}

.bot-msg,
.user-msg {
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 75%;
  word-wrap: break-word;
}

.bot-msg {
  background: #f0f0f0;
  align-self: flex-start;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-msg {
  background: #F08415;
  color: white;
  align-self: flex-end;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
  flex-shrink: 0;

}

.chat-input input {
  flex: 1;
  padding: 15px;
  border: none;
  font-size: 16px;
  outline: none;
}

.chat-input button {
  background: #F08415;
  color: white;
  border: none;
  padding: 0 25px;
  cursor: pointer;
}