/*Información de usuario*/
.userInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .user {
        display: flex;
        align-items: center;
        gap: 15px;

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

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

        img {
            margin-right: 5px;
            width: 25px;
            height: 25px;
            cursor: pointer;
        }
    }
}
