#chatbaseConversations .conversation-summary {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
}

#chatbaseConversations .conversation-details {
    padding: 10px;
    background-color: #fff;
}

#chatbaseConversations .conversation-details .message {
    margin-bottom: 5px;
}

#chatbaseConversations .conversation-details .role {
    font-weight: bold;
}

#chatbaseConversations .conversation-details .content {
    margin-left: 10px;
}

#chatbaseConversations .conversation-details .role {
    font-weight: bold; /* Applies to all roles */
}

/* General styles for messages */
#chatbaseConversations .conversation-details .message {
    padding: 8px;
    margin-bottom: 4px;
    border-radius: 4px;
}

/* Styles for assistant messages */
#chatbaseConversations .conversation-details .message .role.assistant {
    color: #2a9d8f; /* Specific text color for assistant */
}
#chatbaseConversations .conversation-details .message .role.assistant + .content {
    background-color: #e0f2f1; /* Light background color for assistant messages */
    display: block;
    padding: 5px;
    border-radius: 4px;
}

/* Styles for user messages */
#chatbaseConversations .conversation-details .message .role.user {
    color: #e76f51; /* Specific text color for user */
}
#chatbaseConversations .conversation-details .message .role.user + .content {
    background-color: #ffe8e0; /* Light background color for user messages */
    display: block;
    padding: 5px;
    border-radius: 4px;
}

