/*Area del chat*/

.chat {
    flex: 2;
    border-left: 1px solid #dddddd35;
    height: 100%;
    display: flex;
    flex-direction: column;

    .center {
        font-size: 12px;
        flex: 1;
        overflow: scroll;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .icons {
        display: flex;
        gap: 10px;

        img.exit {
            width: 20px;
            height: 20px;
        }
    }
}

