#chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-height: calc(100vh - 50px);
  overflow: hidden;
}

#open-chat-btn {
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#chat-box {
  background-color: white;
  display: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
  min-width: 300px;
  max-width: 500px;
}

#chat-header {
  background-color: #666;
  color: white;
  padding: 10px;
  text-align: right;

  cursor: pointer;
}
#chat-header-info {
  width: 100%;
  margin: 20px;
  margin-bottom: 20px;
  text-align: center;
}

#chat-nombre-empresa {
  font-size: 24px;
}
#chat-messages {
  padding: 10px;
  height: 190px;
  overflow-y: auto;
}

.user-message,
.bot-message {
  background-color: #f0f0f0;
  color: black;
  border-radius: 5px;
  padding: 8px;
  margin-bottom: 5px;
  transition: opacity 0.5s ease;
  margin-bottom: 10px;
}

#user-input {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 0;
  border: none;
  border-top: 1px solid #ccc;
}

#send-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  cursor: pointer;
  width: 100%;
}

#user-options {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #f0f0f0;
  border-radius: 5px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}

#user-options button {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-align: center;
  background-color: #605c5c;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
#close-chat-btn {
  color: white;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  border: none;
}

#open-chat-btn {
  background-color: transparent;
  color: white;
  border: none;
  margin-bottom: 15px;
  border-radius: 20px;
  width: 75px;
  height: 100px;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}
.chat-link {
  color: #7092b6;
  cursor: pointer;
  text-decoration: none;
}
.chat-link:hover {
  color: red;
}
#chat-messages {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #666 #fff;
}

#chat-messages::-webkit-scrollbar {
  width: 6px;
}

#chat-messages::-webkit-scrollbar-thumb {
  background-color: #333;
}

#chat-messages::-webkit-scrollbar-track {
  background-color: #fff;
}
