body {
    background-color: black;
    color: white;
    font-family: "Gotham", sans-serif;
  }
  h1 {
    font-weight: bold;
    color: white; /* Adjust the color to match the text in your design */
  }
.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%; /* Width for "Temas previos" */
    margin-right: 20px; /* Space between columns */
}
.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: white;
  border-radius: 5px; /* Optional: Add rounded corners */
  padding: 0 10px;
  margin-top: 10px;
  color: black;

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

.response-container {
  background-color: white;
  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;
}
