#mini-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 360px;
    max-height: 60vh;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    border: 1px solid #445;
    background: #558;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-radius: 6px;
    overflow: hidden;
    z-index: 99999;
}

#mini-chat-header {
    padding: 8px 10px;
    background: #558;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #fff;
}

#mini-chat-body {
    padding: 8px;
    overflow: auto;
    flex: 1 1 auto;
    background: #558;
}

.mc-msg {
    margin: 6px 0;
    line-height: 1.35;
    white-space: pre-wrap;
    word-break: break-word;
}

.mc-msg.user {
    text-align: right;
    color: #fff;
}

.mc-msg.assistant {
    text-align: left;
    color: #fff;
}

#mini-chat-footer {
    padding: 6px 8px;
    background: #fafafa;
    border-top: 1px solid #eee;
    font-size: 11px;
    color: #666;
}

.mc-status {
    font-style: italic;
    color: #666;
}
