@keyframes popUp {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.2);
      }
    }
    #chatbot-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 9999;
    }

    /* Chatbot icon */
    #chatbot-icon {
      width: 70px;
      height: 70px;
      background-color: #000000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      animation: popUp 1s ease-in-out infinite;
      position: relative;
    }

    #chatbot-icon img {
      width: 40px;
      height: 40px;
    }

    #chatbot-msg {
      background-color: #000000;
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 20px;
      font-size: 14px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      position: absolute;
      right: 90px;
      bottom: 15px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    }

    #chatbot-msg::before {
      content: "";
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: transparent transparent transparent white;
    }
    /* Chatbox */
    #chatbox {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 350px;
      height: 450px;
      background-color: #f0f0f0;
      border: 3px solid #000000;
      border-radius: 10px;
      display: none;
      flex-direction: column;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 9999;
    }

    #chatbox-header {
      padding: 10px;
      background-color: #000000;
      color: rgb(255, 255, 255);
      text-align: center;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 20px;
    }

    #chatbox-header img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }

    #chatbox-messages {
      flex: 1;
      padding: 10px;
      background-color: white;
      overflow-y: auto;
      border-bottom: 2px solid #000000;
      display: flex;
      flex-direction: column;
    }

    #chatbox-footer {
      padding: 5px 10px;
      background-color: white;
      display: flex;
      align-items: center;
      border-radius: 10px 10px !important;
    }

    #chatbox-footer input[type="text"] {
      flex: 1;
      padding: 5px 10px;
      border: 1px solid #000000;
      border-radius: 5px;
      font-size: 14px;
      margin-bottom: 3px;
    }

    #chatbox-footer button {
      margin-left: 10px;
      padding: 5px 10px;
      background-color: #000000;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-bottom: 5px;
    }

    .user-message {
      text-align: right;
      color: white;
      margin-bottom: 10px;
      background-color: #000000;
      padding: 10px;
      border-radius: 10px;
      max-width: 80%;
      margin-left: auto;
    }

    .bot-message {
      text-align: left;
      color: black;
      margin-bottom: 10px;
      background-color: #e0e0e0;
      padding: 10px;
      border-radius: 10px;
      max-width: 80%;
      margin-right: auto;
    }

    .feedback-box {
      padding: 10px;
      border: 1px solid #ddd;
      margin: 10px 0;
      border-radius: 8px;
      background: #f9f9f9;
    }

    .emoji-container {
      text-align: center;
      margin-bottom: 10px;
    }

    .emoji {
      font-size: 24px;
      margin: 0 5px;
      cursor: pointer;
    }

    .query-box-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .query-box {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 14px;
      resize: none;
    }