#chat-box {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 300px;
    border: 1px solid black;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    background-color: black;  /* Add this line to change background to black */
    color: white;  /* Add this line to change text color to white */
  }
  
  #chat-header {
    background-color: #333;
    color: white;
    padding: 10px;
    cursor: pointer;
  }
  
  #chat-content {
    display: none;
  }
  
  #chat-messages {
    height: 300px;
    overflow-y: scroll;
    padding: 0 5px;
    word-wrap: break-word;
    background-color: black;  /* Add this line to change background to black */
    color: white;  /* Add this line to change text color to white */
  }
  
  #chat-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    word-wrap: break-word;
    background-color: white;  /* Add this line to change the input background to black */
    color: black;  /* Add this line to change the text color to white */
    border: none;  /* Removes the default input border */
    outline: none;  /* Removes the default focus outline */
  }
  
  
  .table-container {
    overflow-x: auto;
    margin-top: 40px;  /* Move the table down by 20px */
  }
  
  .table-results {
    border-collapse: collapse;
    table-layout: auto; /* Enable automatic table layout */
    width: auto;  /* Remove fixed table width */
  }
  
  .table-results th, .table-results td {
    border: 1px solid #ccc;
    text-align: left;
    padding: 4px;
    white-space: nowrap; /* Prevent text from wrapping onto next line */
  }
  
  .table-results th {
    background-color: #00AAE7;
    font-weight: bold;  /* Make the text bold */
  }
  
  @media screen and (max-width: 768px) {
    #chat-box {
      width: 100%;  /* Make chat box full width on smaller screens */
      right: 0;  /* Align chat box to the right edge */
    }
  
    .table-results th, .table-results td {
      padding: 8px;  /* Increase padding for better touch targets on mobile */
    }
  }
  