#conceito-bot-chat-container {
  width: 100%;
  max-width: 600px;
  height: 80vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#conceito-bot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-image: url('https://web.whatsapp.com/img/bg-chat-tile_68bfaeb0150547b6a9ef1fdbb86505ac.png');
  background-repeat: repeat;
}

.conceito-bot-message {
  max-width: 70%;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
  display: inline-block;
  clear: both;
  word-wrap: break-word;
  font-size: 14px;
}

.conceito-bot-bot {
  background-color: #fff;
  color: #000;
  float: left;
  border: 1px solid #ddd;
}

.conceito-bot-user {
  background-color: #dcf8c6;
  color: #000;
  float: right;
}

#conceito-bot-input-container {
  display: flex;
  padding: 10px;
  background: #f0f0f0;
  align-items: center;
  border-top: 1px solid #ccc;
}

#conceito-bot-input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px;
  outline: none;
}

#conceito-bot-send-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 20px;
  cursor: pointer;
}

#conceito-bot-header {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #075E54;
  color: white;
}

#conceito-bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

#conceito-bot-username {
  font-weight: bold;
}

#conceito-bot-whatsapp-link {
  margin-top: 10px;
  text-align: center;
}

#conceito-bot-whatsapp-link a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
