/* Support Ticket Chat CSS  */
.direct-chat-msg {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
}

.direct-chat-msg.left {
    justify-content: flex-start; /* Align to the left */
    text-align: left;
}

.direct-chat-msg.right {
    justify-content: flex-end; /* Align to the right */
    text-align: right;
}

.direct-chat-infos {
    display: inline;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #6c757d; /* Neutral gray for text */
}

.direct-chat-name {
    font-weight: bold;
}

.direct-chat-timestamp {
    font-size: 12px;
    color: #adb5bd; /* Muted gray */
}
