/*Lista de chats*/
.chatList {
    flex: 1;
    overflow: scroll;

    /*Intems de usuarios*/
    .item {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 20px;
        border-bottom: 1px solid #dddddd35;

        .left {
            display: flex;
            width: 75%;
            gap: 15px;

            .logo {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                object-fit: cover;
                background-color: #5183FE;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .texts {
                display: flex;
                flex-direction: column;
                gap: 10px;

                span {
                    font-weight: 500;
                }

                p {
                    font-weight: 300;
                }
            }
        }

        .right {
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            width: 25%;

            .notify {
                width: 25px;
                height: 25px;
                gap: 20px;
            }
        }
    }

    .item:hover {
        background-color: rgba(17, 25, 40, 0.5);
    }

    .item.selected {
        background: #5183FE;
        color: white;
        border-color: #0056b3;

        .left {
            .logo {
                background: white;
                color: #5183FE;
                border-color: #0056b3;
            }
        }
    }
}