/* CSS */
#sk-chatbot {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  margin-left: 10px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index:99999;
}
#sk-chatbot-shortcode{
  width: 100%;

  margin-left: 10px;
  height: 500px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  z-index:99999;
}
#sk-chatbot-header {
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ccc;
}
#sk-chatbot-header #sk-chatbot-avatar{
  width: 35px;
  height: 35px;
  margin-right: 10px;
  float: left;
}
#sk-chatbot-header #sk-chatbot-title{
  margin: 0;
  padding: 0;
  float: left;
}
#sk-chatbot-header #sk-chatbot-title h3{
  font-family: 'sk-modernistbold', sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 19px;
  line-height: 17px;
  font-weight: 700;
}
#sk-chatbot-header #sk-chatbot-title p{
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #636363;
  font-size: 14px;
  font-weight: 500;
}

#sk-chatbot-body {
  flex-grow: 1;
  padding: 10px;
  overflow-y: auto;
}

#sk-chatbot-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ccc;
}

#sk-chatbot-input {
  flex-grow: 1;
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#sk-chatbot-send,
#sk-chatbot-camera {
  margin-left: 10px;
}

#sk-chatbot-send{
  font-size: 16px!important;
  padding: 5px!important;
}

.eskalable-ia-chat-user,
.eskalable-ia-chat-asistente {
  max-width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.eskalable-ia-chat-user {
  margin-left: auto;
  background-color: #dcf8c6;
}

.eskalable-ia-chat-asistente {
  margin-right: auto;
  background-color: #65b6f4;
}
