/* Apply basic styles to the webpage */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f5f5f5;
  }
  
  h1 {
    color: #333;
  }
  
  /* Customize the Botsonic widget */
  #botsonic-widget {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
    width: 80%;
    max-width: 400px;
    box-sizing: border-box;
  }
  