@import url(https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&display=swap);
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
  background-color: #000;
  background-color: #0d0d0d;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-family: Exo\2, sans-serif;
  margin: 0;
}
.chat-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0 auto;
  max-width: 600px;
  padding: 1rem;
}
.chat-header {
  align-items: center;
  background: #1a1a1a;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
}
.chat-avatar {
  background: url(/static/media/main.a32caaed863d189f02e6.png) 50% / cover
    no-repeat;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
.chat-title {
  color: #fff;
  flex: 1 1;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}
.chat-model {
  color: #888;
  font-size: 0.8rem;
}
.chat-body {
  background: #121212;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 5px #fff;
  flex: 1 1;
  overflow-y: auto;
  padding: 1rem;
  scrollbar-width: thin;
}
.message {
  word-wrap: break-word;
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  max-width: 75%;
  padding: 0.75rem 1rem;
}
.message-user {
  background: #fff;
  box-shadow: 0 0 5px #fff;
  color: #000;
  margin-left: auto;
}
.message-ai {
  background: #1a1a1a;
  border: 1px solid #fff;
  color: #fff;
}
.chat-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.chat-input {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 9999px;
  color: #fff;
  flex: 1 1;
  outline: none;
  padding: 0.5rem 1rem;
}
.chat-input:focus {
  border-color: #fff;
  box-shadow: 0 0 5px #fff;
}
.chat-send {
  background: #fff;
  border-radius: 9999px;
  color: #000;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}
.chat-send:hover {
  background: #00e67e;
}
.send-icon {
  height: 20px;
  width: 20px;
}
/*# sourceMappingURL=main.0937d4ec.css.map*/
