/* pacc-chatbot.css */

/* Chatbot kapsayıcı */
.pacc-chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  z-index: 9999;
  overflow: hidden;
}

/* Başlık alanı */
.pacc-chatbot-header {
  background: #4f46e5;
  color: white;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/* Mesaj alanı */
.pacc-chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}

/* Kullanıcı mesajı */
.pacc-chatbot-message.user {
  background: #e0f2fe;
  padding: 8px 10px;
  border-radius: 10px;
  margin: 6px 0;
  text-align: right;
}

/* Bot mesajı */
.pacc-chatbot-message.bot {
  background: #f3f4f6;
  padding: 8px 10px;
  border-radius: 10px;
  margin: 6px 0;
  text-align: left;
}

/* Input alanı */
.pacc-chatbot-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.pacc-chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
}

.pacc-chatbot-input input:focus {
  outline: none;
}

.pacc-chatbot-input button {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.pacc-chatbot-input button:hover {
  background: #4338ca;
}
