/* General reset */
body {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background-color: #1e1e1e;
  color: #d4d4d4;
}

/* Chat container */
.chat-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 80px);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #333;
  background: #1e1e1e;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Chat messages area */
.chat {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #1e1e1e;
}

/* Individual message styles */
.message {
  max-width: 90%;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 5px;
  line-height: 1.6;
  word-break: break-word;
  font-family: "Courier New", Courier, monospace;
}

.user-message {
  background-color: #007acc;
  color: #ffffff;
  margin-left: auto;
  text-align: right;
  border: 1px solid #005f99;
}

.bot-message {
  background-color: #2d2d2d;
  color: #9cdcfe;
  margin-right: auto;
  text-align: left;
  border: 1px solid #444;
}

/* Typing indicator */
.typing-indicator {
  max-width: 90%;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #2d2d2d;
  color: #d4d4d4;
  font-style: italic;
  text-align: left;
  margin-right: auto;
  border: 1px dashed #444;
}

/* Input area */
.input-container {
  display: flex;
  border-top: 1px solid #333;
  padding: 10px;
  background-color: #252526;
}

#message-input {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #333;
  background-color: #1e1e1e;
  color: #d4d4d4;
  border-radius: 3px;
  outline: none;
  font-family: "Courier New", Courier, monospace;
}

#message-input::placeholder {
  color: #666;
}

#send-button {
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #007acc;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
}

#send-button:hover {
  background-color: #005f99;
}
.message small {
  font-size: 0.8em;
  color: #888;
}

h1 {
  text-align: center;
  margin-bottom: 20px;

}