.sw-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.sw-container .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.sw-container .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.sw-container .title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.sw-container .message {
    font-size: 12px;
    color: #666;
    margin-top: -2px;
}