#lcs-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    font-family: sans-serif;
    z-index: 9999;
}
#lcs-chat-toggle {
    background: #0073aa;
    color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}
#lcs-chat-box {
    border: 1px solid #ccc;
    background: white;
    padding: 10px;
    border-radius: 0 0 5px 5px;
}
#lcs-chat-messages {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 5px;
}
#lcs-chat-input {
    width: 100%;
    height: 50px;
    margin-bottom: 5px;
}
#lcs-chat-send {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}
