<!-- File: public/style.css -->
/* Copy your existing CSS from the <style> tag here, without the <style> wrapper */
:root { /* theme-default vars */ }
/* theme-cyberpunk, theme-retro, etc. */
body { /* layout, fonts, background */ }
/* all your component, screen, controls, carousel, mini-gameboy, responsive rules */
body {
	padding: 2rem;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}
/* Simple reset & layout */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  background: #1a1a1a;
  color: #e6e6fa;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.chat-window {
  width: 100%;
  max-width: 400px;
  height: 600px;
  background: #2a2a2a;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}
.message {
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  max-width: 80%;
  line-height: 1.4;
}
.user {
  background: #4b0082;
  margin-left: auto;
}
.assistant {
  background: #333333;
}
.input-area {
  display: flex;
  border-top: 1px solid #444;
}
#message-input {
  flex: 1;
  padding: 12px;
  background: #2a2a2a;
  color: #e6e6fa;
  border: none;
}
#message-input:focus { outline: none; }
#send-btn {
  background: #8a2be2;
  border: none;
  color: white;
  padding: 0 20px;
  cursor: pointer;
}
#send-btn:disabled { opacity: 0.6; cursor: default; }
