<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#chatMessages {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.conversation-item {
    cursor: pointer;
}

.conversation-item:hover {
    background-color: #f8f9fa;
}


.message.text-end {
    background-color: #e9ecef;
}


.message p {
    margin: 0;
}

.message small {
    display: block;
    font-size: 0.8em;
    color: #888;
}


.user-item {
    cursor: pointer;
}

.user-item:hover {
    background-color: #f8f9fa;
}

.chat-notification {
    max-width: 300px;
    word-wrap: break-word;
}
/* new 2024-10-08 */




#chatMessages {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column-reverse;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
}

.message.sent {
    background-color: #dcf8c6;
    align-self: flex-end;
    margin-left: auto;
}

.message.received {
    background-color: #f1f0f0;
    align-self: flex-start;
}

.message-meta {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 5px;
}

.therapist-badge {
    font-size: 0.7em;
    padding: 2px 5px;
    border-radius: 3px;
    background-color: #007bff;
    color: white;
    margin-left: 5px;
}</pre></body></html>