#grafikaweb-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

#chat-header {
    font-weight: bold;
    text-align: center;
    background: #0073aa;
    color: white;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}

#chat-messages {
    height: 200px;
    overflow-y: scroll;
    padding: 5px;
}

#chat-input {
    width: 80%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#send-btn {
    width: 15%;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}