
        /* Chat Bubble Style */
    #chat-bubble #chat-icon {
      position: fixed;
      bottom: 18px;
      right: 17px;
      border: none;
      background-color: transparent;
      width: 64px;
      height: 64px;
      font-size: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      
    }

    /* Chat Form Container */
    #chat-form-container {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 300px;
      background: white;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: none;
      z-index: 999;
    }

    #chat-form-container input {
      width: 100%;
      margin-bottom: 10px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    #chat-form-container button {
      width: 100%;
      padding: 10px;
      background-color: #72263d;
      border: none;
      color: white;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    #chat-form-container button:hover {
      background-color: #72263d;
    }