.chat-header {
   padding: 10px;
   background-color: #000000;
   display: flex;
   justify-content: space-between;
   align-items: center;
  
 }
 .chat-header h2 {
   margin: 0;
   font-size: 16px;
 }
 .control-buttons {
   display: flex;
   gap: 5px;
 
 }
 .control-btn-1 {
   /* background: none; */
   background-color: transparent !important;
   font-size: 16px;
   font-weight: bold;
   color: #fff;
   cursor: pointer;
   padding: 5px;
 }
 .control-btn-1:hover {
   background: transparent;
   cursor: pointer;
  
 }
 .chat-body {
   max-height: 400px;
   overflow-y: auto;
   padding: 10px;
  
 }
 .chat-footer {
   padding: 10px;
   display: flex;
   gap: 10px;
   background-color: #8c8c8c1a;
 }
 .chat-footer input {
   flex: 1;
   padding: 5px;
 }
  .date-time {
   font-size: 10px;
   color: #ffffff;
   display: block;
   margin-top: 5px;
   font-weight: 500;
   size: 8px;
   font-family: "Montserrat";
   font-style: normal;
   line-height: 9.75px;
   height: 10px;
 }
  button {
   background-color: #333;
   color: white;
   border: none;
   padding: 5px 15px;
   margin: 0 5px;
   border-radius: 15px;
   cursor: pointer;
 }
  button:hover {
   background-color: #444;
 }
 .predefined-questions {
   display: flex;
   gap: 4px;
   max-width: 70%;
   flex-wrap: wrap;
 }
  .question-button {
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid #8c8c8c;
   background: transparent;
   width: fit-content;
   border-radius: 9px;
   font-family: "Montserrat";
   font-weight: 500;
   font-size: 12px;
   line-height: 14.63px;
   letter-spacing: 0%;
   padding: 4px 14px;
   border: 1px solid rgba(140, 140, 140, 1);
   color: rgba(255, 255, 255, 1);
   height: auto;
   min-height: 24px;
   cursor: pointer !important;
 }
 .chat-container {
   position: fixed;
   bottom: 20px;
   right: 20px;
   font-family: "Montserrat";
   width: 361px;
   height: 460px;
   border: 1px solid #8c8c8c4d;
   background-color: #262626;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   display: none;
 }
  .chat-icon {
   position: fixed !important;
   bottom: 20px;
   right: 20px;
   width: 50px;
   height: 50px;
   background-color: #000000;
   border-radius: 50%;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
 }
  .chat-header {
   background-color: #000000;
   color: white;
   padding: 5px;
   height: 40px;
   text-align: center;
   line-height: 1px;
   border-top-left-radius: 20px;
   border-top-right-radius: 20px;
 }
  .chat-body {
   padding: 16px;
   height: 370px;
   width: 100%;
   overflow-y: auto;
   display: flex;
   flex-direction: column;
   border-radius: 10px;
 }
 .chat-body::-webkit-scrollbar {
   width: 4px; /* Width of the scrollbar */
   height: 40px;
   left: 2px;
   border-radius: 6.92px;
 }
  .chat-body::-webkit-scrollbar-track {
   background: transparent; /* Make the track transparent */
 }
  .chat-body::-webkit-scrollbar-thumb {
   background: rgba(255, 255, 255, 0.2);
   border-radius: 10px;
 }
  .chat-body::-webkit-scrollbar-thumb:hover {
   background: rgba(255, 255, 255, 0.4);
 }
  .chat-message {
   flex-direction: row;
   justify-content: center;
   align-items: center;
   padding: 7px 16px;
   gap: 10px;
   font-family: "Montserrat";
   font-style: normal;
   font-weight: 500;
   font-size: 12px;
   line-height: 15px;
   margin: 5px 0;
   max-width: 70%;
   background-color: rgba(51, 204, 255, 1);
   color: #000000;
   border-radius: 1.2rem;
   border: none;
 }
  .chat-message.bot {
   background-color: #33ccff;
   align-self: flex-start;
   font-family: "Montserrat";
   font-style: normal;
   margin-top: 28px;
   font-weight: 500;
   font-size: 12px;
   line-height: 14.63px;
 }
  .chat-message.user {
   background-color: rgba(140, 140, 140, 0.25);
   color: rgba(255, 255, 255, 1);
   font-family: "Montserrat";
   font-style: normal;
   font-weight: 500;
   font-size: 12px;
   padding: 7px 16px;
   gap: 10px;
   border-radius: 1.2rem;
   line-height: 15px;
   flex-direction: row;
   align-self: flex-end;
   max-width: 70%;
   overflow-wrap: break-word;
   word-wrap: break-word;
 }
  .chat-footer {
   display: flex;
   padding: 7px;
   border-top: 1px solid #e9ecef;
   background-color: rgba(140, 140, 140, 0.1);
   border-top: none;
   position: sticky; /* Keep the footer fixed at bottom */
   bottom: 0;
   width: 100%;
   box-sizing: border-box;
   border-bottom-left-radius: 20px; /* Add this */
   border-bottom-right-radius: 20px; /* Add this */
 }
  .chat-footer input {
   flex: 1;
   padding: 10px;
   background-color: rgba(140, 140, 140, 0.01);
   border-radius: 10px;
   margin-right: 10px;
   color: #ffffff;
   width: 293px;
   height: 34px;
   border: 1px solid rgba(140, 140, 140, 0.3);
   border-radius: 13px;
   outline: none;
   width: calc(100% - 20px); /* Adjust width accounting for padding */
   box-sizing: border-box; /* Include padding and border in width calculation */
 }
  .chat-footer input::placeholder {
   color: rgba(255, 255, 255, 0.5);
   opacity: 1;
 }
  /* Add focus state */
 .chat-footer input:focus {
   border-color: rgba(140, 140, 140, 0.5);
   background-color: rgba(140, 140, 140, 0.05);
 }
 .feedback {
   margin: 4px 0;
   display: flex;
   gap: 10px;
   justify-content: flex-start;
   align-items: center;
 }
 /* was this helpful */
 .feedback-text {
   font-size: 1rem;
   color: #ffffff;
   margin-right: 10px;
   font-family: "Montserrat";
   font-style: normal;
   font-weight: 500;
   font-size: 12px;
   line-height: 15px;
 }
  .feedback-icon {
   cursor: pointer;
   font-size: 1.4em;
   color: #555;
   transition: color 0.2s, transform 0.2s;
 }
  .feedback-icon:hover {
   color: #33ccff;
   transform: scale(1.2);
 }
 
 .chat-message.undefined {
   background-color: rgba(51, 204, 255, 1);
   align-self: flex-start;
   color: #000000;
   font-family: "Montserrat";
   font-style: normal;
   font-weight: 500;
   font-size: 12px;
   line-height: 14.63px;
 }
 .support-btn {
   display: inline-block;
   background-color: #8c8c8c 55%;
   color: #ffffff;
   margin-left: -1px;
   margin-top: 10px;
   border-radius: 12px;
   border: none;
   cursor: pointer;
   font-family: "Montserrat";
   font-style: normal;
   font-weight: 500;
   font-size: 12px;
   line-height: 15px;
   text-decoration: none;
   transition: background-color 0.3s;
 }
  .support-btn:hover {
   background-color: #ffffff;
   color: #000000;
 }
 
