.deepseek-chat-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    background: #f9f9f9;
}
.deepseek-chat-messages {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
    border-radius: 4px;
}
.deepseek-chat-input {
    display: flex;
    gap: 10px;
}
.deepseek-chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.deepseek-chat-input button {
    padding: 8px 15px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.deepseek-chat-input button:hover {
    background: #005a87;
}
.deepseek-chat-status {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}
