/* Floating Chat Button */
#chatbot-launcher {
    position: fixed;
    bottom: 68px;
    right: 20px;
    background: #034ab4;
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: blink 1.5s infinite;
  }
  
  @keyframes blink {
    0% { box-shadow: 0 0 0 rgba(13,110,253,0.7); }
    50% { box-shadow: 0 0 15px rgba(13,110,253,1); }
    100% { box-shadow: 0 0 0 rgba(13,110,253,0.7); }
  }
  
  /* Chat Box */
  #chatbot-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 340px;
    background: #fff;
    border-radius: 12px;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    overflow: hidden;
    font-family: Arial, sans-serif;
  }
  
  /* Header */
  #chatbot-header {
    background: #0b5ed7;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #chatbot-header span {
    font-weight: 600;
  }
  
  /* Close button */
  #chatbot-close {
    cursor: pointer;
    font-size: 18px;
  }
  
  /* Messages */
  #chatbot-messages {
    height: 260px;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
  }
  
  .bot-msg {
    margin-bottom: 10px;
    color: #333;
  }
  
  .user-msg {
    text-align: right;
    margin-bottom: 10px;
    color: #0b5ed7;
  }
  
  /* Input */
  #chatbot-input {
    display: flex;
    border-top: 1px solid #ddd;
  }
  
  #chatbot-input input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 14px;
  }
  
  #chatbot-input button {
    background: #0b5ed7;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
  }
  