body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.container-fluid {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dropdown-section {
  background-color: #f4f4f4;
  border-bottom: 1px solid #ddd;
  padding: 7px 5px 0px 5px;
  flex-shrink: 0;
}

#pdf-dropdown {
  max-width: 100%;
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.content-section {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.left-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  overflow: auto;
  border-right: 1px solid #ddd;
}

iframe {
  width: 100%;
  height: 100%;
  border: 1px solid black;
}

#all-view {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 1px solid #ddd;
  color: #05042982;
}

.right-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px;
  overflow-y: hidden;
  max-height: 100%;
}

.banner-content {
  padding: 10px;
  border: 2px solid grey;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.chat-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow-y: auto;
  max-height: 89%;
}

.chat-box .message {
  max-width: 99%;
  margin: 5px 0;
  padding: 5px;
  font-size: 13px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}

.chat-box .message.bot {
  align-self: flex-start;
  background-color: #f0f0f0;
}

.chat-box .message.user {
  align-self: flex-end;
  background-color: #007bff;
  color: #fff;
}

.chat-box .message.loader img {
  height: 25px;
}

.chat-input {
  display: flex;
  align-items: center;
  margin-top: 10px;
  /* gap: 10px; */
  flex-shrink: 0;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.chat-input button {
  padding: 8px 12px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.chat-input button:hover {
  background-color: #0056b3;
}

/* Media Queries - Medium Devices */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    height: auto;
  }

  .left-section {
    border-right: none;
    border-bottom: 1px solid #ddd;
    height: 50vh;
    display: none;
  }

  .right-section {
    height: 50vh;
  }

  .chat-box .message {
    max-width: 75%;
  }

  /* Suggestion */
  .chat-input {
    width: 95% !important;
    bottom: 4px !important;
  }
}

/* Media Queries - Small Devices */
@media (max-width: 576px) {
  /* #pdf-dropdown {
    font-size: 14px;
  } */

  .chat-box .message {
    max-width: 90%;
  }

  .chat-input input {
    font-size: 12px;
  }

  .chat-input button {
    font-size: 12px;
  }
}

/* Suggestion */
.chat-input {
  position: absolute;
  width: 48%;
  bottom: 12px;
  background-color: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.scroll-ref{
  display: inline-block;
  padding: 0px 2px; /* Adjust the size of the circle */
  background-color: #3498db; /* Circle background color */
  color: white; /* Text color */
  text-align: center;
  text-decoration: none; /* Remove underline */
  border-radius: 20%;
  font-size:11px
  
}