      /* Style for the chat box container */
      .chat-box {
        max-width: 400px;
        margin: 0 auto;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid black; /* Add this line */
      }

      /* Style for the scroll bar */
      .conversation-box::-webkit-scrollbar {
        width: 10px;
        background-color: #ffffff
      }

      /* Style for the scroll thumb */
      .conversation-box::-webkit-scrollbar-thumb {
        background-color: #f1f1f1;
        border-radius: 10px;
      }

      /* Style for the conversation box */
      .conversation-box {
        height:500px;
        overflow-y: scroll;
        padding: 10px;
      }

      /* Style for the bot bubble */
      .bot-bubble {
        background-color: #f1f1f1;
        border-radius: 10px;
        padding: 10px 15px;
        max-width: 80%;
        margin-bottom: 10px;
        max-width: fit-content;
      }

      /* Style for the user bubble */
      .user-bubble {
        background-color: #d8edfd;
        border-radius: 10px;
        padding: 10px 15px;
        max-width: 80%;
        margin-bottom: 10px;
        margin-left: auto;
        max-width: fit-content;
      }

      /* Style for the input box and send button */
      .input-box {
        width: 70%;
        padding: 10px;
        border: none;
        border-radius: 5px;
        margin-right: 10px;
        border: 1px solid #ccc;
      }

      .send-box{
        padding-top: 20px;
      }

      .send-btn {
        width: 60px;
        height: 38px;
        background: #008cca;
        color: #fff;
        border-radius: 30px;
        text-align: center;
        text-decoration: none;
        line-height: 38px;
        box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12), 0 3px 1px -2px rgba(0,0,0,.2);
        transition: all .5s;
        border: none;
    }

      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
      }

      .overlay-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        max-width: 90%;
        max-height: 90%;
        overflow-y: auto;
      }

      .overlay-close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        color: #aaa;
        cursor: pointer;
      }

      .overlay-close:hover {
        color: black;
      }

        body {
          font-family: Arial, sans-serif;
          background-color: #f5f5f5;
        }
        #main {
            margin: 0 auto;
            text-align: center;
        }
        h2 {
          text-align: center;
        }

       a {
        color: #008cca;
      }

      .chat-box {
        position: relative;
      }
      
      .loading-animation {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 4px solid #ccc;
        border-top-color: #008cca;
        animation: spin 1s infinite linear;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
      }

      #logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 11px;
      }

      #logo img {
        width: 200px;
        height: auto;
      }

      .header {
        padding: 20px;
        text-align: center;
        font-weight: bold;
      }
      
      .loading-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: rgb(255 255 255);
        border-radius: 8px;
        border: 1px solid black; /* Add this line */
        z-index: 999;
      }
      
      @keyframes spin {
        0% {
          transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }

      /* Style for the debug table */
      .debug-table {
        width: 90%; /* Adjust the width as needed */
        margin: 0 auto; /* Center the table horizontally */
        border-collapse: collapse;
        margin-top: 20px; /* Adjust the margin-top as needed */
        display: none;
      }

      .debug-table th,
      .debug-table td {
        border: 1px solid #ccc; /* Add a border to the table cells */
        padding: 10px;
        text-align: left;
      }

      .debug-table th {
        background-color: #f1f1f1; /* Header background color */
        font-weight: bold;
      }

      /* Style for table rows */
      .debug-table tbody tr:nth-child(even) {
        background-color: #f9f9f9; /* Alternate row background color */
      }

      /* Hover effect on table rows */
      .debug-table tbody tr:hover {
        background-color: #e0e0e0; /* Hover background color */
      }

      .debug-toggle {
        text-align: center; /* Center the debug options */
        padding-top: 15px;
      }
      
      