/* These styles are generated from project.scss. */
.container{
  max-width: 1500px;
}
.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}


.fixed-bottom-right {
  position: sticky;
  bottom: 0;
  right: 0;
  left: auto;
  padding: 10px;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  z-index: 1030;
}

.table-container {
  position: relative;
  overflow-x: auto;
  /*max-height: 800px; !* Adjust max height as needed *!*/
  /*min-height: 800px; !* Set a minimum height *!*/
}

table {
  min-width: 100%; /* Ensure table takes full width of container */
}


.file_container {
  height: 100vh;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #fcfcfc;
}

.card {
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  width: 600px;
  height: 260px;
  background-color: #ffffff;
  padding: 10px 30px 40px;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;

}

.drop_box {
  margin: 10px 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 3px dotted #a3a3a3;
  border-radius: 5px;
}

.drop_box h4 {
  font-size: 16px;
  font-weight: 400;
  color: #2e2e2e;
}

.drop_box p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #a3a3a3;
}

.upload_button {
  text-decoration: none;
  background-color: #005af0;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  outline: none;
  transition: 0.3s;
}

.upload_button:hover{
  text-decoration: none;
  background-color: #ffffff;
  color: #005af0;
  padding: 10px 20px;
  border: none;
  outline: 1px solid #010101;
}
.upload_form input {
  margin: 10px 0;
  width: 100%;
  background-color: #e2e2e2;
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 4px;
}

/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    background-color: #f0f0f0;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh;*/
/*}*/

.chat-container {
    background-color: #fff;
    /*width: 1500px;*/
    /*max-width: 90%;*/
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 90vh;

    /* Hide the scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.message p {
    margin: 0;
    padding: 10px;
    border-radius: 8px;
    max-width: 75%;
    word-wrap: break-word;
}

.message.user p {
    background-color: #f1f1f1;
    color: #333;
}

.message.bot p {
    background-color: #e6f7ff;
    color: #007bff;
    margin-left: auto;
}

.message.bot p::before {
    content: "Bot";
    display: block;
    font-size: 0.8rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 5px;
}

.message.user p::before {
    content: "User";
    display: block;
    font-size: 0.8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.message.user {
    justify-content: flex-start;
}

.message.bot {
    justify-content: flex-end;
}

.small-audio{
    width: 300px;
}