@charset "utf-8";
/* CSS Document */
#chat-toggle {
      position: fixed; 
      bottom: 50px; 
      right: 20px;
      background-color:#3dc250; 
      color: white;
      border: none; 
      border-radius: 50px;
      padding: 11px;
      font-size: 28px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      cursor: pointer;
      text-align: center; line-height: normal; z-index: 9999
    }
    #chat-container {
      position: fixed; 
      bottom: 120px; 
      right: 20px;
      width: 320px; 
      height: 460px;
      background: #fff; 
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      display: none; 
      flex-direction: column;
      z-index: 9999;
    }
    #chat-header {
      background: #83954e; 
      color: white;
      padding: 12px; 
      border-top-left-radius: 10px; 
      border-top-right-radius: 10px;
      font-weight: bold;
    }
    #chat-messages {
      flex: 1; 
      padding: 10px; 
      overflow-y: auto;
    }
    .msg {
      display: flex;
      justify-content: flex-start; 
      margin: 8px 0;
      font-size: 14px;
      line-height: 1.4;
    }
    .bot {
      color: #333;
      background: #f1f1f1;
      padding: 8px 12px;
      border-radius: 8px;
      max-width: 85%;
      word-break: break-word;
      display: inline-block;
      margin-left: 10px;
    }
    .user {
      color: #405631;
      background: #d8e6ad;
      padding: 8px 12px;
      border-radius: 8px;
      text-align: right;
      display: inline-block;
      max-width: 85%;
      word-break: break-word;
      margin-right: 10px;
    }

    #chat-input {
      display: flex; 
      border-top: 1px solid #ccc;
    }
    #chat-input input {
      flex: 1; 
      padding: 10px; 
      border: none; 
      font-family: 'Rubik', sans-serif;
      outline: none;
    }
    #chat-input button {
      font-family: 'Rubik', sans-serif;
      padding: 10px 15px; 
      border: none;
      background: #83954e; 
      color: white; 
      cursor: pointer;
    }
