* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  /* background-color: #e8e9e8; */
  /* color: #fff; */
  overflow-x: hidden;
}

.avatar-container img {
  /* border: 3px solid #65686d; */
  box-shadow: 0px 0px 10px rgb(84, 85, 87);

}


.dialogue-box {
  width: 700px;
  /* box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3); */
  animation: fadeIn 0.5s ease-in-out;
}

.input-container {
  width: 700px;
}

.input-container button {
  border-color: gray;
  transition: background-color 0.3s ease;
}

.input-container button:hover {
  background-color: #0694c7;
}

.question-list {
  /* margin-top: 20px; */
  list-style: none;
  padding: 0;
}

.question-list li {
  background-color: #3c63ad;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.question-list li:hover {
  background-color: #0694c7;
}

.avatar-talking {
  animation: float 2s infinite ease-in-out;
}

.toggle-button button:hover {
  transition: background-color 0.3s ease;
  background-color: #0694c7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}
#voiceSearchButton {
  display: block !important;
}