#eliza-chat-wp {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  background: transparent;
  color: #444444;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  box-sizing: border-box;
}
#eliza-chat-wp * { box-sizing: border-box; }

#eliza-chat-wp .eliza-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
#eliza-chat-wp .eliza-header h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #303440;
  margin: 0;
  text-transform: uppercase;
}
#eliza-chat-wp .eliza-header p {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}

#eliza-chat-wp #chat-container {
  width: 100%;
  max-width: 680px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-top: 3px solid #f26722;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 520px;
}

#eliza-chat-wp #messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}

#eliza-chat-wp .msg {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
#eliza-chat-wp .msg .sender {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #a0a0a0;
}
#eliza-chat-wp .msg.eliza .sender { color: #f26722; }
#eliza-chat-wp .msg.user .sender  { color: #a0a0a0; }

#eliza-chat-wp .msg .text {
  font-size: 0.97rem;
  line-height: 1.6;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
}
#eliza-chat-wp .msg.eliza .text {
  color: #303440;
  background: #f3f4f6;
  border-left: 3px solid #f26722;
}
#eliza-chat-wp .msg.user .text {
  color: #c02d28;
  background: #fff5f3;
  border-left: 3px solid #c02d28;
}

#eliza-chat-wp #input-area {
  border-top: 1px solid #e0e0e0;
  display: flex;
  padding: 0.6rem 1rem;
  gap: 0.75rem;
  align-items: center;
  background: #ffffff;
  border-radius: 0 0 4px 4px;
}
#eliza-chat-wp #user-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #444444;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}
#eliza-chat-wp #user-input::placeholder { color: #c0c0c0; }

#eliza-chat-wp #send-btn {
  background: linear-gradient(135deg, #e66225 0%, #c02d28 100%);
  border: none;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
#eliza-chat-wp #send-btn:hover { opacity: 0.85; }

#eliza-chat-wp .eliza-footer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #a0a0a0;
  text-align: center;
  line-height: 1.8;
}
