#chatbot-container {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
}

/* Default: English (LTR) */
html[dir="ltr"] #chatbot-container {
    right: 20px;
}

/* Urdu: RTL */
html[dir="rtl"] #chatbot-container {
    left: 20px;
}

#chatbot-button {
    background: #088B99;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#chat-window {
    display: none;
    position: absolute;
    bottom: 50px;
    width: 340px;
    height: 400px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


/* Chat window positioning */
html[dir="ltr"] #chat-window {
    right: 0;
}

html[dir="rtl"] #chat-window {
    left: 0;
}

#chat-window.open {
    display: block;
}

/* Sticky Chatbot Header */
#chat-header {
    background: #088B99;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    position: sticky;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #088B99;
}

#chat-messages {
    height: 280px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

#chat-input {
    width: 80%;
    padding: 5px;
}

html[dir="ltr"] #send-btn {
    width: 18%;
    padding: 7px;
    background: #088B99;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

html[dir="rtl"] #send-btn {
    padding: 7px;
    background: #088B99;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.user-message {
    text-align: left;
    background: #088B99;
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
}

.bot-message {
    text-align: left;
    background: #f1f1f1;
    padding: 5px;
    border-radius: 5px;
    margin: 5px;
}