.chat-messages-wrap {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #ffffff;
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-item {
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.message-user {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.message-text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    word-break: break-word;
}