/* Chatbot widget button */
    #chatbot-widget-button {
      display: flex;
      position: fixed;
      bottom: 20px;
      right: 20px;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border: none;
      border-radius: 12px;        /* Curved edges */
      background-color: #007bff;  /* Example color */
      color: white;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      gap: 8px;                   /* Space between icon and text */
    }

      /* Styling for the chatbot iframe (hidden by default) */
    #chatbot-widget-iframe {
      /*position: fixed;
      bottom: 90px;
      right: 20px;
      width: 400px;
      height: 500px;
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;*/

       /* bottom: 90px;
        right: 20px;
        background: white;
        border-radius: 16px;
        border: none;
        width: 400px;
        height: 500px;
        position: fixed;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);*/

        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        border-radius: 0;
        border: none;
        z-index: 9999;

    }
      body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #f4f4f4;
    }

    #welcome-message {
      background-color: #007bff;
      color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      font-size: 24px;
    }

    #contact {
      position: fixed;
      bottom: 0;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      background-color: #f0f0f0;
    }