
#sipora-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    z-index: 10000;
}
#sipora-chat-header {
    background: #008060;
    color: white;
    padding: 10px;
    font-weight: bold;
}
#sipora-chat-messages {
    height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
}
#sipora-user-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: none;
    border-top: 1px solid #ccc;
}
