.line-ht-1 {
    line-height: 1;
}

.chatbot-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
}

.chatbot-window {
    position: fixed;
    height: 450px;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    bottom: 80px;
    right: 20px;
    z-index: 1500;
    overflow: hidden;
}

.chatbot-window.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}


.chatbot-footer {
    padding: 10px;
    display: flex;
    flex-direction: column;
    /*gap: 4px;*/
    /*gap: 8px;*/
}

.chatbot-input {
    border: 1px solid #CCC;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    align-items: center;
    /*flex-wrap: wrap !important;*/
  /*  align-items: stretch !important;*/
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.chatbot-input textarea {
    resize: none;
    outline: none;
    border: none;
    display: block;
    position: relative;
    flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    width: 1%;
    min-width: 0;
    overflow-y: auto;
}

.chat-hidden {
    display: none;
}

.chat-bubble {
    max-width: 95%;
}

.chat-common-question {
    border: 1px solid #CCCCCC;
}

.chat-common-question:hover {
    border-color: #06573C;
}

.chat-arrow-hidden {
    display: none;
}

.chat-arrow-visible {
    display: inline-block; /* or flex depending on layout */
    cursor: pointer;
}


.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots .dot {
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 50%;
    animation: typingAnimation 1.2s infinite ease-in-out;
}

.typing-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}


/*


.chat-header {
    background: #007bff;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
}

.message {
    margin: 6px 0;
    padding: 8px 10px;
    border-radius: 6px;
    max-width: 80%;
}

.message.user {
    background-color: #dcf8c6;
    align-self: flex-end;
    text-align: right;
}

.message.bot {
    background-color: #f1f0f0;
    align-self: flex-start;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}

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

.chat-input button {
    margin-left: 8px;
    padding: 8px 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
*/
