    #chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #055cb9;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 30px;
      cursor: pointer;
      z-index: 9999;
    }

    #chat-box {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 300px;
      max-height: 400px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 10px;
      display: none;
      flex-direction: column;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      z-index: 9999;
    }

    #chat-log {
      height: 200px;
      overflow-y: auto;
      margin-bottom: 0px;
    }

    #chat-input {
      display: flex;
      gap: 5px;

    }

    #chat-input input {
      flex: 1;
      border: 1px solid rgb(6, 45, 109);
      border-radius: 3px;
      font-size: 14px;
    }

    .bot,
    .user {
      font-size: 14px;
      line-height: 1.6;
    }

    .bot-container {
      display: block;
      align-items: flex-start;
      gap: 8px;
    }

    .bot-container::after{
      content: "";
      clear: both;
      display: block;
    }

    .bot-avatar {
      float: left;
      width: 45px;
      height: 38px;
      border-radius: 50%;
      background-image: url('../images/chat_bot.png');
      background-size: cover;
      background-position: center;
    }

    .bot {
      width: 220px;
      float: right;
      color: green;
    }

    .user {
      margin: 10px 10px 10px 10px ;
      display: flex;
      justify-content: end;
      color: #007bff;
    }

    #email-form {
      margin-top: 20px;
      margin-bottom: 30px;
      display: none;
      background-color: rgb(245, 248, 250);
      box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
      padding: 10px;
    }

    #email-form label {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 0;
    }

    #email-form input {
      border: 1px solid rgb(6, 45, 109);
      border-radius: 3px;
      font-size: 14px;
    }

    #email-form button {
      background-color: #007bff;
      color: white;
      border-radius: 5px;
      font: menu;
      padding: 5px 15px;
      text-align: center;
    }

    .button_container {
      text-align: right;
    }

    #chat-input button {
      background-color: #007bff;
      color: white;
      border-radius: 5px;
      font: menu;
      padding: 5px 15px;
      text-align: center;
    }