﻿
.chat-list {
    width: auto;
    margin: 0 auto;
    padding: 10px;
}

.chat-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #444;
    position: relative;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(7, 5, 8, 8);
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0f0;
    border: 2px solid #121212;
}

.chat-info {
    flex-grow: 1;
    margin-left: 10px;
}

.chat-info h4 {
    font-size: 16px;
    margin: 0 0 5px;
    color: black;
}

.chat-info-p {
    font-size: 14px;
    margin: 0;
    color: #aaa;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-info-p2 {
    font-size: 14px;
    margin: 0;
    color: black;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.time {
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
}

.time2 {
    font-size: 12px;
    color: black;
    flex-shrink: 0;
}
