body {
  font-family: Arial, sans-serif;
}

#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #931819;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  font-size: 24px;
  z-index: 1000;
}

#chat-container {
  width: 320px;
  height: 450px;
  border: 2px solid #931819;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 1000;
  overflow: hidden;
}

#chat-header {
  background-color: #931819;
  color: white;
  padding: 10px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: bold;
}

#messages {
  overflow-y: auto;
  flex-grow: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.message {
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 14px;
}

.user {
  background-color: #b0d9ff;
  align-self: flex-end;
  text-align: right;
}

.bot {
  background-color: #f1f1f1;
  align-self: flex-start;
  text-align: left;
}

.suggestion-btn {
  background-color: white;
  border: 1px solid #931819;
  color: #931819;
  border-radius: 20px;
  padding: 5px 10px;
  margin-top: 5px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s;
}

.suggestion-btn:hover {
  background-color: #e7f1ff;
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
    }
}

@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(141, 5, 10, 1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}