body { | |
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | |
max-width: 800px; | |
margin: 0 auto; | |
padding: 20px; | |
background: #f5f5f5; | |
} | |
h1 { | |
color: #2d2d2d; | |
text-align: center; | |
} | |
.chat-container { | |
background: white; | |
border-radius: 12px; | |
padding: 20px; | |
box-shadow: 0 2px 4px rgba(0,0,0,0.1); | |
} | |
#questionInput { | |
width: 100%; | |
padding: 12px; | |
border: 1px solid #ddd; | |
border-radius: 8px; | |
margin-bottom: 12px; | |
font-size: 16px; | |
resize: vertical; | |
} | |
#sendButton { | |
background: #007AFF; | |
color: white; | |
border: none; | |
padding: 12px 24px; | |
border-radius: 8px; | |
cursor: pointer; | |
font-size: 16px; | |
transition: background 0.2s; | |
} | |
#sendButton:hover { | |
background: #0056b3; | |
} | |
#responseContainer { | |
margin-top: 20px; | |
padding: 16px; | |
border: 1px solid #ddd; | |
border-radius: 8px; | |
min-height: 100px; | |
} | |
#status { | |
color: #666; | |
font-style: italic; | |
} | |
#response { | |
margin-top: 12px; | |
white-space: pre-wrap; | |
} |