/* Contenedor principal */
#chat-container {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 600px;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* Caja de mensajes */
#chat-box {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f5f5f5;
}

/* Cada mensaje */
.message {
  margin: 5px 0;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 70%;
  word-wrap: break-word;
}

/* Mensajes del usuario */
.message.user {
  background: #4f91ff;
  color: white;
  align-self: flex-end;
}

/* Mensajes de la IA/Todoroki */
.message.ai {
  background: #e0e0e0;
  color: black;
  align-self: flex-start;
}

/* Contenedor del input y botón */
#input-container {
  display: flex;
  padding: 10px;
  background: #fff;
  border-top: 1px solid #ccc;
}

/* Input de texto */
#chat-input {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* Botón enviar */
#send-btn {
  margin-left: 10px;
  padding: 8px 12px;
  border: none;
  background: #4f91ff;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

#send-btn:hover {
  background: #3b6fc2;
}
