#chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    z-index: 9999;
}

#chat-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

#chat-input {
    width: calc(100% - 60px);
    padding: 5px;
    border: none;
    outline: none;
}

#chat-container button {
    width: 50px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
}

.user-msg { color: #000; margin: 5px 0; }
.bot-msg { color: #007bff; margin: 5px 0; }


#chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    font-family: Arial, sans-serif;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}




#chat-header {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

#chat-body {
    background-color: #fff;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    height: 400px;
}

#chat-box {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
}

#chat-input-area {
    display: flex;
    padding: 5px;
}

#chat-input-area input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

#chat-input-area button {
    margin-left: 5px;
    padding: 5px 10px;
    background-color: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.user-msg {
    color: #000;
    margin: 5px 0;
}

.bot-msg {
    color: #007bff;
    margin: 5px 0;
}

/* --- Floating Chat Button --- */
#chat-toggle {
    position: fixed; /* Stays relative to the browser window */
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Ensures it's always on top of other content */
    /* Add styling for button appearance here (color, size, icon, etc.) */
}
