  #chatbox {
      width: 400px; height: 450px; background:#fff; border-radius:12px;	  
      box-shadow:0 4px 12px rgba(0,0,0,0.2); overflow:hidden;
      display:flex; flex-direction:column; margin:0px auto;
	  
    }
    #messages { flex:1; overflow-y:auto; padding:10px; }
    .msg { margin:8px 0; padding:8px 12px; border-radius:12px; max-width:80%; word-wrap:break-word; display:flex; align-items:flex-start; }
    .userai { background:#dcf8c6; margin-left:auto; border-bottom-right-radius:0; }
    .bot { background:#eee; margin-right:auto; border-bottom-left-radius:0; }
    .icon { margin-right:6px; }
    #input-area { display:flex; border-top:1px solid #ccc; }
    #input { flex:1; padding:10px; border:none; outline:none; }
    #send { padding:10px 16px; border-radius: 0px; border:none; background:#4CAF50; color:#fff; cursor:pointer; }
    #send:hover { background:#45a049; border-radius: 0px;}
    #faq {  padding:8px; background:#fafafa; display:flex; flex-wrap:wrap; gap:6px; }
    .faq-btnai { background:#c0c0c0; border:none; padding:6px 10px; border-radius:8px; cursor:pointer; font-size:13px;font-family: 'PT Sans Narrow', sans-serif; }
    .faq-btnai:hover { background:#fc8f03; }
	