/* KI-Assistent */

.ki-assistent-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.chat-container {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chat-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-status {
  font-size: 12px;
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 10px;
}

.chat-messages {
  height: 450px;
  overflow-y: auto;
  padding: 20px;
  background: #f9f9f9;
}

.message {
  margin-bottom: 15px;
  display: flex;
}

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

.message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.message.user .message-content {
  background: #667eea;
  color: white;
  border-bottom-right-radius: 4px;
}

.message.bot .message-content {
  background: white;
  color: #333;
  border: 1px solid #e0e0e0;
  border-bottom-left-radius: 4px;
}

.message.bot .message-content a {
  color: #667eea;
  text-decoration: underline;
}

.message.bot .message-content ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.message.bot .message-content li {
  margin-bottom: 4px;
}

.suggestions {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.suggestions li {
  color: #667eea;
  cursor: pointer;
  margin-bottom: 4px;
  font-size: 13px;
}

.suggestions li:hover {
  text-decoration: underline;
}

.chat-input-area {
  display: flex;
  padding: 10px;
  background: white;
  border-top: 1px solid #e0e0e0;
  gap: 8px;
}

.chat-input-area input {
  flex: 1;
  border-radius: 20px;
  padding: 10px 16px;
  border: 1px solid #ddd;
}

.chat-input-area button {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print {
  .navbar, .footer, .site-header, .site-footer, .chat-input-area { display: none; }
}
