
      body {
        font-family: Arial, sans-serif;
      }

      .chat-icon {
        position: fixed;
        bottom: 20px;
        right: 20px;
        cursor: pointer;
      }

      .chat-icon img {
        width: 50px;
        height: 50px;
      }

      .initial-message {
        width: 100%;
      }

      .chat-content p {
        padding: 8px;
        margin: 8px 10px;
        font-size: 12px;
        background-color: black;
        border-radius: 8px;
        text-align: left;
        color: white;
        max-width: fit-content;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .chat-form-container {
        display: none;
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 300px;
        background-color: #f1f1f1;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }

      .chat-header,
      .success-message-header {
        background-color: #2dfbfb;
        color: black;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .chat-header h2,
      .success-message-header h2 {
        font-size: 14px;
        margin: 0;
      }

      #close-chat {
        background: none;
        border: none;
        font-size: 16px;
        color: black;
        cursor: pointer;
      }

      /* .chat-form {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
      } */

      form {
        display: flex;
        flex-direction: column;
        padding: 0px 7px;
        margin: 10px;
        color: white;
        background-color: black;
        border-radius: 10px;
      }

      form label {
        margin: 8px 0 4px;
        font-size: 12px;
      }

      form input,
      form textarea,
      form button {
        padding: 5px;
        margin-bottom: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
      }

      form textarea {
        resize: auto;
      }

      form button {
        background-color: #088395;
        color: white;
        border: none;
        cursor: pointer;
      }

      form button:hover {
        background-color: #0e4c5e;
      }

      .success-message {
        display: none;
        padding: 16px;
        text-align: center;
      }

      .success-message h2 {
        background-color: #007bff;
        color: white;
        padding: 10px;
        margin: -16px -16px 16px -16px;
      }

      .disclaimer {
        font-size: 10px;
        color: #555;
        margin-top: 10px;
        padding: 10px;
      }
      .powered-by {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        font-size: 10px;
        color: white;
        margin-top: 10px;
        padding: 5px 10px 10px 10px;
        background-color: black;
      }

      .powered-by img {
        margin-left: 3px;
      }

      .status {
        /* margin-top: 10px; */
        /* font-size: 14px; */
      }

      @media (max-width: 600px) {
        .chat-form-container {
          width: 100%;
          bottom: 0;
          right: 0;
          border-radius: 8px;
        }

        .chat-icon {
          bottom: 10px;
          right: 10px;
        }
      }
  