:root {
  --lm-primary: #1B2A4A;
  --lm-accent: #F37021;
  --lm-background: #0F1729;
  --lm-text: #FFFFFF;
  --lm-shadow: 0 20px 60px rgba(15, 23, 41, 0.35);
  --lm-user-bg: #ffe0b2;
  --lm-assistant-bg: #e0f2f7;
  --lm-user-border: #ffcc80;
  --lm-assistant-border: #b3e5fc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#lm-chat-launcher,
#lm-chat-window {
  font-family: 'Inter Display', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 27px;
  letter-spacing: 0px;
}

/* Chat message styling to match the image design */
.lm-message {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
}

.lm-message.user {
  justify-content: flex-end;
}

.lm-message.assistant {
  justify-content: flex-start;
}

.lm-message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  word-wrap: break-word;
  position: relative;
}

.lm-message.user .lm-message-content {
  background: var(--lm-user-bg);
  color: #1f2937;
  border: 1px #B8D4FF;
  border-bottom-right-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.lm-message.assistant .lm-message-content {
  background: #F0F6FF;
  color: #1f2937;
  border: 1px solid #B8D4FF;
  border-bottom-left-radius: 6px;
  box-shadow: 0 2px 8px rgba(2, 136, 209, 0.1);
}

.lm-message-meta {
  font-size: 16px;
  opacity: 0.6;
  margin-top: 4px;
  color: #6b7280;
}

.lm-quick-actions {
  margin: 16px 0;
  padding: 0 16px;
}

.lm-quick-actions p {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 500;
}

.lm-quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lm-quick-btn {
  background: #F0F9FF;
  border: 1px solid #E0F2FE;
  color: #026AA2;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter Display', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: all 0.3s ease;
  margin: 2px;
  display: inline-block;
  white-space: nowrap;
}

.lm-quick-btn:hover {
  background: #e9ecef;
  color: #495057;
  border-color: #dee2e6;
  transform: translateY(-1px);
}

.lm-integrated-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #F8F8F7;

  border-radius: 24px;
  padding: 4px;
  transition: all 0.3s ease;
}

.lm-integrated-input-wrapper:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lm-chat-input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 27px;
  letter-spacing: 0px;
  color: #1f2937;
  outline: none;
  font-family: 'Inter Display', sans-serif;
  font-weight: 400;
}

.lm-chat-input::placeholder {
  color: #9ca3af;
}

.lm-send-icon-btn {
  background: transparent;
  border: none;
  color: #6b7280;
  padding: 8px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.lm-send-icon-btn:hover {
  background: #f3f4f6;
  color: #374151;
  transform: translateY(-1px);
}

.lm-send-icon-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.lm-contextual-indicator {
  background: #E8F5E8;
  color: #2E7D32;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin: 8px 0;
  border: 1px solid #C8E6C9;
}
