.chat-mockup-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.chat-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-mockup-avatar {
    object-fit: cover;
    border-radius: 50%;
}

.chat-mockup-meta {
    display: flex;
    flex-direction: column;
}

.chat-mockup-title {
    margin: 0;
    line-height: 1.2;
}

.chat-mockup-status-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.chat-mockup-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chat-mockup-status {
    line-height: 1;
}

.chat-mockup-body {
    display: flex;
    flex-direction: column;
}

.chat-mockup-row {
    display: flex;
    width: 100%;
}

.chat-mockup-row-left {
    justify-content: flex-start;
}

.chat-mockup-row-right {
    justify-content: flex-end;
}

.chat-mockup-bubble {
    padding: 10px 14px;
    line-height: 1.4;
    word-break: break-word;
}

/* Restricting widths as per spec */
.chat-mockup-row-left .chat-mockup-bubble {
    max-width: 75%;
}

.chat-mockup-row-right .chat-mockup-bubble {
    max-width: 65%;
}
