.deepseek-chat-container {
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.deepseek-chat-header {
    background-color: #4a6fa5;
    color: rgb(112, 13, 105);
    padding: 15px;
    text-align: center;
}

.deepseek-chat-header h3 {
    margin: 0;
    font-size: 18px;
}

.deepseek-chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
}

.deepseek-message {
    margin-bottom: 15px;
    clear: both;
}

.deepseek-message .message-content {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
}

.deepseek-message.user {
    text-align: right;
}

.deepseek-message.user .message-content {
    background-color: #dcf8c6;
    float: right;
}

.deepseek-message.assistant .message-content {
    background-color: #fff;
    float: left;
    border: 1px solid #e0e0e0;
}

.deepseek-chat-input {
    display: flex;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.deepseek-chat-input textarea {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    resize: none;
    height: 40px;
    outline: none;
}

.deepseek-chat-input button {
    background-color: #4a6fa5;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0 20px;
    margin-left: 10px;
    cursor: pointer;
    height: 40px;
}

.deepseek-chat-input button:hover {
    background-color: #3a5982;
}

.deepseek-loading {
    display: inline-block;
    margin-left: 10px;
}

.deepseek-message-timestamp {
    font-size: 12px;
    color: #999;
    clear: both;
    padding-top: 5px;
}

/* Typing indicator */
.typing-indicator {
    display: inline-block;
    padding: 10px 15px;
    background-color: #e6e6e6;
    border-radius: 18px;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    animation: 1s blink infinite 0.9999s;
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

/* Response formatting */
.message-content p {
    margin: 0 0 10px 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content pre {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 10px 0;
}

.message-content code {
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    font-size: 14px;
}

.message-content ul, .message-content ol {
    margin: 10px 0;
    padding-left: 20px;
}
.deepseek-quick-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.deepseek-prompt-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.deepseek-prompt-btn:hover {
    background-color: #e0e0e0;
}

.deepseek-category-filter {
    margin-bottom: 15px;
}

.deepseek-category-filter select {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.deepseek-prompt-btn.hidden {
    display: none;
}
.provider-settings {
    display: none;
}