#chat-box-header {
  background: #007bff;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

#chat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 400px;
  overflow-y: auto;
  padding: 10px;
}

.message {
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  margin: 5px 10px;
  max-width: 70%;
  word-wrap: break-word;
  line-height: 1.5;
}

.user-message {
  align-self: flex-end;
  background: #007bff;
  color: white;
  text-align: right;
  border-bottom-right-radius: 0;
}

.bot-message {
  align-self: flex-start;
  background: #e0e0e0;
  color: black;
  text-align: left;
  border-bottom-left-radius: 0;
}

.bot-message img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 5px;
}

.bot-message iframe {
  max-width: 100%;
}

#input-container {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 10px;
  background: white;
}

#mic-button {
  margin-left: 10px;
  padding: 8px 15px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  background: red;
}

#button-send-mess {
  margin-left: 10px;
  padding: 8px 15px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

#chat-container {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 100px;
  height: 580px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

@media (max-width: 992px) {
  #fixedContact ul {
    flex-direction: row !important;
  }

  #chat-container {
    bottom: 110px !important;
  }
}
