body {
  /*   background: radial-gradient(circle, #1e2022, #18191b);
 */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.chat-container {
  width: 80%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  overflow: hidden;
}

.chat-box {
  background: rgba(0, 0, 0, 0.4);
  height: 400px;
  overflow-y: auto;
  padding: 15px;
  box-sizing: border-box;
  color: #ddd;
}

.chat-input {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}
.chat-input button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.chat-input button:hover {
  background-color: #3e8e41;
}

input[type="text"] {
  width: 80%;
  padding: 5px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: #ddd;
}

button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background: #6051c5;
  color: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #4d3fb1;
}

.assistant {
  background: #6051c5;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  color: #ddd;
  margin: 5px 0;
}

.chat-message {
  margin-bottom: 10px;
}

.intro-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-container img {
  width: 50%;
  min-width: 300px;
}

#loader {
  font-size: 25px;
  text-align: center;
  color: black;
}
