/* ===== Amitai Chatbot – klasik görünüm ===== */

/* Kapsayıcı */
#amitai-chatbot{
  position:fixed; right:20px; bottom:20px; z-index:2147483000;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

/* Launcher (kapalıyken görünen yuvarlak buton) */
#amitai-chatbot .amitai-bot-launcher{
  position:fixed; right:20px; bottom:20px;
  width:60px; height:60px;
  border:none; border-radius:999px;
  background:#1e3a8a; color:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  font-size:0; line-height:0; color:transparent; /* buton içindeki metni gizle */
}
#amitai-chatbot .amitai-bot-launcher .amitai-launch-img{
  width:28px; height:28px; display:block; object-fit:contain; pointer-events:none;
}

/* Pencere */
#amitai-chatbot .amitai-bot-window{
  width:360px; max-width:94vw;
  height:520px; max-height:80vh;
  background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,.26);
  display:none; flex-direction:column; min-height:320px;
}

/* Açıkken pencere görünür, launcher gizlenir */
#amitai-chatbot:not(.closed) .amitai-bot-window{ display:flex; }
#amitai-chatbot:not(.closed) .amitai-bot-launcher{ display:none; }

/* Header */
#amitai-chatbot .amitai-bot-header{
  flex:0 0 auto; height:48px; background:#1e3a8a; color:#fff;
  display:flex; align-items:center; justify-content:space-between; padding:0 12px;
}
#amitai-chatbot .amitai-bot-header .title{ font-weight:600; }
#amitai-chatbot .amitai-bot-header .actions button{
  background:transparent; border:0; color:#fff; cursor:pointer; font-size:18px; margin-left:6px;
}

/* Gövde (scroll alanı) */
#amitai-chatbot .amitai-bot-body{
  flex:1 1 auto; min-height:0;
  background:#f8fafc; padding:12px;
  overflow-y:auto; -webkit-overflow-scrolling:touch; overscroll-behavior:contain;
  position:relative; z-index:1;
}
#amitai-chatbot #amitai-messages{
  display:flex; flex-direction:column; gap:8px;
  flex:1 1 auto; min-height:0;
}

/* Mesaj balonları */
#amitai-chatbot .messages .msg{
  line-height:1.45; word-wrap:break-word; white-space:pre-wrap;
}
#amitai-chatbot .messages .msg.user{
  align-self:flex-end; background:#1e3a8a; color:#fff;
  padding:10px 12px; border-radius:12px; margin-left:20%; max-width:85%;
}
#amitai-chatbot .messages .msg.bot{
  align-self:flex-start; background:#e5e7eb; color:#111827;
  padding:10px 12px; border-radius:12px; margin-right:20%; max-width:85%;
}

/* Giriş alanı */
#amitai-chatbot .amitai-bot-input{
  flex:0 0 auto; display:flex; gap:8px; padding:10px;
  background:#fff; border-top:1px solid #e5e7eb; position:relative; z-index:2;
}
#amitai-chatbot .amitai-bot-input input{
  flex:1; border:1px solid #cbd5e1; border-radius:10px; padding:10px 12px; outline:none;
}
#amitai-chatbot .amitai-bot-input input:focus{
  border-color:#93c5fd; box-shadow:0 0 0 3px rgba(29,115,255,.15);
}
#amitai-chatbot .amitai-bot-input button{
  border:0; background:#1e3a8a; color:#fff; border-radius:10px; padding:0 14px; cursor:pointer;
}

/* Kapalıyken launcher hep görünür kalsın (emniyet) */
#amitai-chatbot.closed .amitai-bot-launcher{ display:flex !important; }
