 #chat-widget-toggle {
     position: fixed;
     bottom: 10px;
     right: 20px;
     background: #0073aa;
     color: white;
     border: none;
     padding: 10px 15px;
     border-radius: 30px;
     cursor: pointer;
     font-size: 20px;
     z-index: 9999;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 #chat-box {
     display: none;
     position: fixed;
     bottom: 70px;
     right: 20px;
     max-width: 60vh;
     max-height: 70vh;
     min-height: 60vh;
     border: 1px solid #ccc;
     padding: 15px;
     border-radius: 10px;
     background: #fff;
     font-family: Arial, sans-serif;
     font-size: 14px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
     z-index: 9999;
     flex-direction: column;
     overflow: hidden;

 }

 #chat-box.visible {
     display: flex;
 }

 #chat-help {
     background-color: aliceblue;
     align-self: flex-start;
     text-align: left;
     margin: 5px 0;
     padding: 8px;
     border-radius: 10px;
     max-width: 90%;

 }

 #chat-suggestions {
     margin-bottom: 10px;
 }


 #chat-scroll-area {
     flex: 1;
     overflow-y: auto;
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 10px;
 }

 #chat-messages {
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .chat-message {
     margin: 5px 0;
     padding: 8px;
     border-radius: 10px;
     max-width: 90%;
 }

 .user-message {
     background-color: #dcf8c6;
     align-self: flex-end;
     text-align: left;
 }

 .bot-message {
     background-color: aliceblue;
     align-self: flex-start;
     text-align: left;
 }

 #chat-input {
     width: 100%;
     padding: 8px;
     border: 1px solid #ccc;
     border-radius: 5px;
 }

 .text-send-button {
     background-color: rgb(170, 173, 171);
     border: none;
     border-radius: 30px;
     padding: 10px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
 }

 .text-send-button:hover {
     background-color: #20bd5f;
 }

 #chat-widget-toggle:hover {
     background-color: #005b8e;
 }

 .chat-toggle-logo {
     max-width: 30px;
     max-height: 30px;
     border-radius: 50%;
 }

 .chat-label {
     border-radius: 100px;
     font-size: 14px;
     font-style: normal;
     font-weight: 700;
     justify-content: center;
 }

 .typing-dots {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     color: #888;
 }

 .typing-dots span {
     animation: blink 1.4s infinite;
     margin: 0 2px;
     font-weight: bold;
     opacity: 0;
 }

 .typing-dots span:nth-child(1) {
     animation-delay: 0s;
 }

 .typing-dots span:nth-child(2) {
     animation-delay: 0.2s;
 }

 .typing-dots span:nth-child(3) {
     animation-delay: 0.4s;
 }

 @keyframes blink {
     0% {
         opacity: 0;
     }

     20% {
         opacity: 1;
     }

     100% {
         opacity: 0;
     }
 }