#streamlegal-chat {
    z-index: 10000 !important;
    font-family: Arial, sans-serif;
    position: fixed !important;
    bottom: 160px !important;
    right: 40px !important;
    width: 300px !important;
    height: 400px !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 10px !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
    display: block !important;
}
#chat-header {
    background: #004aad !important; /* StreamLegal blue */
    color: #fff !important;
    padding: 10px !important;
    border-radius: 10px 10px 0 0 !important;
    cursor: pointer !important;
}
#streamlegal-bubble {
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999999;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-family: Arial, sans-serif;
    font-size: 24px;
}
#chat-body div {
    margin-bottom: 10px;
}
#user-input {
    border: 1px solid #ccc;
    border-radius: 5px;
}
#send-message {
    background: #004aad !important; /* StreamLegal blue */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#send-message:hover {
    background: #003087 !important; /* Darker blue */
}
@media (max-width: 600px) {
    #streamlegal-chat {
        width: 90%;
        right: 5%;
        bottom: 80px;
        height: 400px;
    }
    #streamlegal-bubble {
        bottom: 80px;
        right: 5%;
    }
    #chat-body {
        height: 310px;
    }
}