#localagi-chatbox-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 450px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background: #fff;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#localagi-chatbox-header {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

#localagi-chatbox-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ccc;
}

#localagi-chatbox-form {
    display: flex;
    padding: 10px;
}

#localagi-chatbox-input {
    flex-grow: 1;
    border: 1px solid #ccc;
    padding: 8px;
}

#localagi-chatbox-form button {
    background: #337ab7;
    color: #fff;
    border: none;
    padding: 8px 15px;
    margin-left: 5px;
    cursor: pointer;
}

.chat-message {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.user-message {
    background: #e1ffc7;
    text-align: right;
}

.ai-message {
    background: #f1f0f0;
    text-align: left;
}