/* Floating Icon */
#hands-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0072CE;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Chat Box */
#hands-chatbot {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

/* Chat Header */
#chat-header {
    background: #0072CE;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Close Button */
#chat-close {
    cursor: pointer;
}

/* Chat Window */
#chat-window {
    flex: 1;
    padding: 8px;
    overflow-y: auto;
    background: #fff;
}

/* Input & Button */
#chat-input {
    width: calc(100% - 16px);
    padding: 6px;
    margin: 4px 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
}
#chat-send {
    margin: 0 8px 8px 8px;
    padding: 6px;
    background: #0072CE;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Messages */
.user-msg {
    background: #e0f7fa;
    padding: 6px;
    color:black  !important;
    margin: 4px 0;
    border-radius: 5px;
}
.bot-msg {
    background: #f1f1f1;
    padding: 6px;
    margin: 4px 0;
    color:black;
    border-radius: 5px;
}
