body {
    background-color: black;
    color: #E8E8E8;
    font-family: "Gotham", sans-serif;
  }
  h1 {
    font-weight: bold;
    color: #E8E8E8; 
  }
.greylinks {
    color: #303A4C; 
    text-decoration: none; /* Removes the underline if desired */
}

.container {
  max-width: 1200px;
  display: flex; /* Enable flexbox for side-by-side layout */
  align-items: flex-start; /* Align items to the top */
}

.left-aligned {
    width: 30%; 
    margin-right: 20px; 
}
.right-aligned {
  width: 70%; /* Width for the main content */
}
.twocol {
  width: 50%;
  margin-top: 10px;
  margin-right: 10px;
}
.question-container {
  text-align: left; 
  background-color: #E8E8E8;
  border-radius: 5px; /* Optional: Add rounded corners */
  padding: 0 10px;
  margin-top: 10px;
  color: black;

}
.previous-container {
  background-color: #E8E8E8;
  margin-top: 10px;
  padding: 0 10px;
  color: black;
  border-radius: 5px;
  box-sizing: border-box;
  overflow-y: auto;
}

.response-container {
  background-color: #E8E8E8;
  padding: 15px; /* Add some padding for better aesthetics */
  border-radius: 5px; /* Optional: Add rounded corners */
  margin-top: 10px;
  padding: 0 10px;
  color: black;
  box-sizing: border-box;
  overflow-y: auto;
}
.empty-container {
  background-color: black;
  padding: 15px; /* Add some padding for better aesthetics */
  border-radius: 5px; /* Optional: Add rounded corners */
  margin-top: 10px;
  padding: 0 10px;
  color: black;
  height: 505px;
}

.form-control {
  background-color: #445066; /* New Input Field Background */
  color: #FFFFFF; /* Make sure text is readable */
  border: 1px solid #344056;
}

.botui-actions-text-input{
  width: 100% !important;
  height: 40px;
  font-size: 16px;
  padding: 8px;
  box-sizing: border-box;
  
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  background-color: #fff;
}

.botui-actions-text-input:focus {
  border-color: #999;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.botui-actions-textarea {
  width: 100% !important;
  font-size: 16px;
  padding: 8px;
  border: 1px solid #ccc !important;
  border-radius: 6px;
  outline: 1px solid #ccc;
  box-shadow: none;
  resize: none;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
}

.botui-actions-textarea:focus {
  border-color: #3f51b5;
  outline: 2px solid #3f51b5;
  box-shadow: 0 0 6px rgba(63, 81, 181, 0.2);
}

#chat-app {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
}

.botui-messages-container {
  padding-right: 8px;
}

.botui-messages-container {
  scroll-behavior: smooth;
}

  .chat-input-container {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #f9f9f9;
  }
  .chat-input-container input[type="text"] {
    flex-grow: 1;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 8px 12px;
    font-size: 1em;
  }
  .chat-input-container .attach-btn, .chat-input-container .send-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    padding: 0 10px;
    border-radius: 8px;
    color: #555;
  }
  .chat-input-container .send-btn {
    color: #007bff;
  }
  .file-checkbox-container {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
    max-height: 150px;
    overflow-y: auto;
  }
  .file-checkbox-container label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
  }
