/* 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 {

    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);
}
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;
    display: block;
}
h1 {
    display: block;
 }

#paypal-button-container {
            display: none; /* Hidden by default */
            margin-top: 20px;
        }

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