/* Botón flotante en la esquina superior derecha */
#chatbot-toggle {
  position: fixed;
  bottom: 60px; 
  right: 40px;
 
  background: linear-gradient(to right, #ff0000, #990000);
  color: white;
  font-size: 22px;
  padding: 10px 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Ventana del chatbot */
#chatbot-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  height: 500px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Encabezado del chatbot */
#chatbot-header {
    background: linear-gradient(to right, #ff0000, #990000);
  color: white;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Cierre */
#chatbot-close {
  cursor: pointer;
  font-size: 16px;
}

/* Iframe del chatbot */
#chatbot-window iframe {
  width: 100%;
  height: 100%;
  border: none;
}