#ollama-chatbot {
    width: 350px;
    height: 500px;
    border: 2px solid #444;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    font-family: Tahoma, sans-serif;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
#ollama-chatbot .chat-header {
    background: #4a90e2;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
}
#ollama-chatbot .chat-box {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
}
.chat-message {
    margin: 5px 0;
    padding: 8px;
    border-radius: 10px;
    max-width: 80%;
}
.chat-message.user {
    background: #d1ecf1;
    align-self: flex-end;
}
.chat-message.bot {
    background: #e2e3e5;
    align-self: flex-start;
}
#ollama-chatbot .chat-footer {
    display: flex;
    padding: 10px;
}
#chat-input {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
#send-btn {
    margin-left: 5px;
    padding: 8px 15px;
    border-radius: 10px;
    border: none;
    background: #4a90e2;
    color: #fff;
    cursor: pointer;
}
